Mercurial > public > sg101
annotate gpp/antispam/admin.py @ 532:ff67946fd4b0
For #242, move the updating of the POTD sequence into a new signals module.
When photos are deleted from the admin changelist in bulk, the individual
delete() functions on the photo objects is not called. However, the post_delete
signal is called for each object.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sun, 25 Dec 2011 04:15:32 +0000 |
parents | 28988cce138b |
children |
rev | line source |
---|---|
bgneal@214 | 1 """Admin definitions for the antispam application.""" |
bgneal@214 | 2 |
bgneal@214 | 3 from django.contrib import admin |
bgneal@214 | 4 |
bgneal@214 | 5 from antispam.models import SpamPhrase |
bgneal@214 | 6 |
bgneal@214 | 7 |
bgneal@214 | 8 class SpamPhraseAdmin(admin.ModelAdmin): |
bgneal@214 | 9 search_fields = ('phrase', ) |
bgneal@214 | 10 |
bgneal@214 | 11 |
bgneal@214 | 12 admin.site.register(SpamPhrase, SpamPhraseAdmin) |