view gpp/smiley/admin.py @ 375:fe1896e14c11

Fixing #184; fix typo in date template filter string that is causing the wrong date to be displayed on the max users online statistic.
author Brian Neal <bgneal@gmail.com>
date Tue, 08 Mar 2011 00:50:33 +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)