Mercurial > public > sg101
annotate gpp/smiley/admin.py @ 72:7f199c85a07c
#19 Use new google maps API key for the entire surfguitar101.com domain.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Wed, 01 Jul 2009 18:38:25 +0000 |
parents | dbd703f7d63a |
children | 3ae999b0c53b |
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): |
gremmie@1 | 9 list_display = ('title', 'code', 'html') |
gremmie@1 | 10 |
gremmie@1 | 11 admin.site.register(Smiley, SmileyAdmin) |