Mercurial > public > sg101
annotate smiley/admin.py @ 731:796103a2215b
Fix messages master checkbox behavior. See also 6ba401391cd5.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Wed, 09 Oct 2013 20:52:48 -0500 |
parents | ee87ea74d46b |
children |
rev | line source |
---|---|
gremmie@1 | 1 """ |
gremmie@1 | 2 This file contains the automatic admin site definitions for the Smiley models. |
gremmie@1 | 3 """ |
gremmie@1 | 4 |
gremmie@1 | 5 from django.contrib import admin |
gremmie@1 | 6 from smiley.models import Smiley |
gremmie@1 | 7 |
gremmie@1 | 8 class SmileyAdmin(admin.ModelAdmin): |
bgneal@123 | 9 list_display = ('title', 'code', 'html', 'is_extra') |
bgneal@288 | 10 list_filter = ('is_extra', ) |
gremmie@1 | 11 |
gremmie@1 | 12 admin.site.register(Smiley, SmileyAdmin) |