Mercurial > public > sg101
view gpp/smiley/admin.py @ 376:6f963e5e7b03
Fixing #156; improve upon the work done in r397. Use the forum last visit record if there is no topic last visit record.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Tue, 08 Mar 2011 01:16:56 +0000 |
parents | 4ba879ccdc62 |
children |
line wrap: on
line source
""" This file contains the automatic admin site definitions for the Smiley models. """ from django.contrib import admin from smiley.models import Smiley class SmileyAdmin(admin.ModelAdmin): list_display = ('title', 'code', 'html', 'is_extra') list_filter = ('is_extra', ) admin.site.register(Smiley, SmileyAdmin)