Mercurial > public > sg101
comparison antispam/admin.py @ 581:ee87ea74d46b
For Django 1.4, rearranged project structure for new manage.py.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sat, 05 May 2012 17:10:48 -0500 |
parents | gpp/antispam/admin.py@28988cce138b |
children |
comparison
equal
deleted
inserted
replaced
580:c525f3e0b5d0 | 581:ee87ea74d46b |
---|---|
1 """Admin definitions for the antispam application.""" | |
2 | |
3 from django.contrib import admin | |
4 | |
5 from antispam.models import SpamPhrase | |
6 | |
7 | |
8 class SpamPhraseAdmin(admin.ModelAdmin): | |
9 search_fields = ('phrase', ) | |
10 | |
11 | |
12 admin.site.register(SpamPhrase, SpamPhraseAdmin) |