view donations/admin.py @ 733:18e42866b34d

For #56, default to anonymous radio button on donations form. Also improve the donations admin page with a date hierarchy and other fields on the list display.
author Brian Neal <bgneal@gmail.com>
date Thu, 24 Oct 2013 21:03:03 -0500
parents ee87ea74d46b
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']
    date_hierarchy = 'payment_date'
    list_display = ['__unicode__', 'payer_email', 'payment_date', 'memo']

admin.site.register(Donation, DonationAdmin)