view gpp/donations/admin.py @ 163:4f07047e0a40

Shoutbox history CSS tweaks. For some reason, the table lost the top and bottom borders.
author Brian Neal <bgneal@gmail.com>
date Tue, 22 Dec 2009 03:56:26 +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)