Mercurial > public > sg101
view gpp/donations/admin.py @ 141:861f7d5f1b23
Rework r149 for #30. Got rid of the custom index. Put my dashboard in the nav-global block instead.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sun, 06 Dec 2009 07:55:48 +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)