view gpp/donations/admin.py @ 363:9d470c7a2b93

Following up on #168; redo some code to make it more DRY. Added a function on the profile to reset the text fields.
author Brian Neal <bgneal@gmail.com>
date Sat, 05 Mar 2011 04:03:30 +0000
parents c018872385ea
children
line wrap: on
line source
"""
This file contains the admin definitions for the donations application.
"""
from django.contrib import admin
from donations.models import Donation

class DonationAdmin(admin.ModelAdmin):
    raw_id_fields = ('user', )

admin.site.register(Donation, DonationAdmin)