Mercurial > public > sg101
view antispam/admin.py @ 831:0f9c014c8adc
Bandmap: don't need to send URL to javascript client.
Also tweaking note as I am noticing it isn't getting rendered
correctly on all bands for some reason.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sun, 28 Sep 2014 20:42:57 -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)