Mercurial > public > sg101
annotate gpp/smiley/admin.py @ 144:49b713bca29d
Podcast: un-inlined the channel items from the channel. That would be too bulky and too much info on one admin screen.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sun, 06 Dec 2009 21:44:22 +0000 |
parents | 3ae999b0c53b |
children | 4ba879ccdc62 |
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') |
gremmie@1 | 10 |
gremmie@1 | 11 admin.site.register(Smiley, SmileyAdmin) |