Mercurial > public > sg101
annotate antispam/admin.py @ 715:820e57e621e8
Use |safe filter on Haystack templates to get better results w/quotes.
Content was getting escaped, so text with quotes around it was seemingly
missing from the search index. This change fixed that. I verified that the
search results will not leak raw HTML to the page so this should be safe to do.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Tue, 17 Sep 2013 20:26:49 -0500 |
parents | ee87ea74d46b |
children |
rev | line source |
---|---|
bgneal@214 | 1 """Admin definitions for the antispam application.""" |
bgneal@214 | 2 |
bgneal@214 | 3 from django.contrib import admin |
bgneal@214 | 4 |
bgneal@214 | 5 from antispam.models import SpamPhrase |
bgneal@214 | 6 |
bgneal@214 | 7 |
bgneal@214 | 8 class SpamPhraseAdmin(admin.ModelAdmin): |
bgneal@214 | 9 search_fields = ('phrase', ) |
bgneal@214 | 10 |
bgneal@214 | 11 |
bgneal@214 | 12 admin.site.register(SpamPhrase, SpamPhraseAdmin) |