Mercurial > public > sg101
view gpp/potd/admin.py @ 297:69498a43e636
Fixing #137; added a 'time-ago' timestamp to the template tags that display the latest web links and downloads.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sun, 09 Jan 2011 21:16:08 +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)