Mercurial > public > sg101
view gpp/accounts/admin.py @ 77:d5eed0a91a05
#24 - Make the default date for a birthday today - 30 years. This allows you to select any month with the picker if the field is initially blank.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Fri, 10 Jul 2009 23:56:02 +0000 |
parents | dbd703f7d63a |
children | 69d0306a6fe7 |
line wrap: on
line source
"""This file contains the automatic admin site definitions for the accounts Models""" from django.contrib import admin from accounts.models import IllegalUsername from accounts.models import IllegalEmail from accounts.models import PendingUser class PendingUserAdmin(admin.ModelAdmin): list_display = ('username', 'email', 'date_joined') admin.site.register(IllegalUsername) admin.site.register(IllegalEmail) admin.site.register(PendingUser, PendingUserAdmin)