view gpp/smiley/admin.py @ 538:97593a955291

Added a command to fix the old 1.0 POTD smileys to match the new.
author Brian Neal <bgneal@gmail.com>
date Sat, 31 Dec 2011 23:39:24 +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)