Mercurial > public > sg101
view gpp/donations/admin.py @ 165:952e05cb3d80
Implement #49; use POST for updating link hit counts. Also refactored a bit and use javascript to report broken links.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sun, 03 Jan 2010 04:15:14 +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)