Mercurial > public > sg101
view gpp/bio/admin.py @ 146:023132c90021
Another tweak for #30; only show the admin dashboard items if they are non-zero.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Wed, 09 Dec 2009 22:58:05 +0000 |
parents | 7ea842744a57 |
children | 152d77265da6 |
line wrap: on
line source
""" This file contains the admin definitions for the bio application. """ from django.contrib import admin from bio.models import UserProfile from bio.models import UserProfileFlag class UserProfileAdmin(admin.ModelAdmin): search_fields = ('user__username', 'user__first_name', 'user__last_name', 'user__email') exclude = ('profile_html', 'signature_html') class UserProfileFlagAdmin(admin.ModelAdmin): list_display = ('__unicode__', 'flag_date', 'get_profile_url') admin.site.register(UserProfile, UserProfileAdmin) admin.site.register(UserProfileFlag, UserProfileFlagAdmin)