Mercurial > public > sg101
view gpp/potd/admin.py @ 324:33f3d5987a96
Turning the django debug toolbar on again after updating django trunk.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sun, 20 Feb 2011 21:52:27 +0000 |
parents | ded03f2513e9 |
children | 3c951521e0ec |
line wrap: on
line source
""" This file contains the admin definitions for the POTD application. """ from django.contrib import admin from django.conf import settings from potd.models import Photo from potd.models import Current from potd.models import Sequence class PhotoAdmin(admin.ModelAdmin): exclude = ('thumb', ) raw_id_fields = ('user', ) class Media: js = settings.GPP_THIRD_PARTY_JS['tiny_mce'] class CurrentAdmin(admin.ModelAdmin): raw_id_fields = ('potd', ) admin.site.register(Photo, PhotoAdmin) admin.site.register(Current, CurrentAdmin) admin.site.register(Sequence)