view gpp/potd/admin.py @ 296:0eed8161ca39

Fixing #138. Shoutbox scroller breaks down if there aren't at least 2 things to scroll. Added some dummy shouts on the client side if the shout database is empty.
author Brian Neal <bgneal@gmail.com>
date Sun, 09 Jan 2011 20:53:00 +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)