Mercurial > public > sg101
view shoutbox/admin.py @ 631:f36d1a168be7
For issue 27, disable login dialog button during POST.
This seems to prevent multiple logins most of the time. You can
still bang on the enter key and sometimes get more through.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Wed, 14 Nov 2012 20:57:05 -0600 |
parents | ee87ea74d46b |
children |
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 = ('__unicode__', 'user', 'shout_date') raw_id_fields = ('user', ) date_hierarchy = 'shout_date' exclude = ('html', ) search_fields = ('shout', 'user__username') list_filter = ('shout_date', ) class ShoutFlagAdmin(admin.ModelAdmin): list_display = ('__unicode__', 'flag_date', 'shout', 'get_shout_url') actions = ('delete_shouts', ) def delete_shouts(self, request, qs): """ Admin action function to delete the shouts associated with the shout flags. """ for flag in qs: flag.shout.delete() # will delete the flag too delete_shouts.short_description = "Delete selected flags & shouts" admin.site.register(Shout, ShoutAdmin) admin.site.register(ShoutFlag, ShoutFlagAdmin)