view gpp/donations/admin.py @ 250:29679b0b98ad

Some tweaks to the templates before the first beta. Hide the donations module for now.
author Brian Neal <bgneal@gmail.com>
date Sun, 19 Sep 2010 20:42:25 +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)