Mercurial > public > sg101
view gpp/shoutbox/admin.py @ 118:a20b2c492d55
Reduced some sql queries by adding a select_related and monkey patching user profiles onto a user list in shoutbox and the bio/member's list, respectively.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sat, 24 Oct 2009 02:39:19 +0000 |
parents | 777451a98f9d |
children | e1d1a70d312d |
line wrap: on
line source
""" This file contains the automatic admin site definitions for the shoutbox models. """ from django.contrib import admin from shoutbox.models import Shout from shoutbox.models import ShoutFlag class ShoutAdmin(admin.ModelAdmin): list_display = ('shout_date', '__unicode__') raw_id_fields = ('user', ) class ShoutFlagAdmin(admin.ModelAdmin): list_display = ('__unicode__', 'flag_date', 'get_shout_url') admin.site.register(Shout, ShoutAdmin) admin.site.register(ShoutFlag, ShoutFlagAdmin) # vim: ts=4 sw=4