Mercurial > public > sg101
view gpp/smiley/admin.py @ 196:893b6d462cf9
Closing #70 with this commit and the previous on. Incorportating Ken Dushane's design for the site.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Wed, 07 Apr 2010 01:59:09 +0000 |
parents | 3ae999b0c53b |
children | 4ba879ccdc62 |
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') admin.site.register(Smiley, SmileyAdmin)