Mercurial > public > sg101
view gpp/bio/admin.py @ 139:e04d91babfcf
Close #30. Create an admin dashboard to see pending content and requests for admin action.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sun, 29 Nov 2009 22:33:15 +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)