view gpp/bio/admin.py @ 144:49b713bca29d

Podcast: un-inlined the channel items from the channel. That would be too bulky and too much info on one admin screen.
author Brian Neal <bgneal@gmail.com>
date Sun, 06 Dec 2009 21:44:22 +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)