view antispam/admin.py @ 605:a7968613c469

Another tweak to fabfile because of Django 1.4 directory structure changes.
author Brian Neal <bgneal@gmail.com>
date Mon, 23 Jul 2012 19:53:36 -0500
parents ee87ea74d46b
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)