view gpp/antispam/admin.py @ 357:8e3f252e4fbb

Fixing #155; adding some links to the mp3 comps in the base template.
author Brian Neal <bgneal@gmail.com>
date Fri, 04 Mar 2011 02:41:49 +0000
parents 28988cce138b
children
line wrap: on
line source
"""Admin definitions for the antispam application."""

from django.contrib import admin

from antispam.models import SpamPhrase


class SpamPhraseAdmin(admin.ModelAdmin):
    search_fields = ('phrase', )


admin.site.register(SpamPhrase, SpamPhraseAdmin)