Mercurial > public > sg101
view gpp/donations/admin.py @ 375:fe1896e14c11
Fixing #184; fix typo in date template filter string that is causing the wrong date to be displayed on the max users online statistic.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Tue, 08 Mar 2011 00:50:33 +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)