Mercurial > public > sg101
view antispam/admin.py @ 832:c285a86fb4d5
Bandmap: add maxWidth param to InfoWindow ctor.
Hopefully this helps with weird display issues with text
getting cut off or scrollbars appearing.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sun, 28 Sep 2014 21:12:01 -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)