annotate gpp/potd/admin.py @ 133:c515b7401078

Use the new common way to apply markItUp to textareas and to get the smiley and markdown help dialogs for all the remaining apps except for forums and comments.
author Brian Neal <bgneal@gmail.com>
date Fri, 27 Nov 2009 00:21:47 +0000
parents dbd703f7d63a
children ded03f2513e9
rev   line source
gremmie@1 1 """
gremmie@1 2 This file contains the admin definitions for the POTD application.
gremmie@1 3 """
gremmie@1 4
gremmie@1 5 from django.contrib import admin
gremmie@1 6 from potd.models import Photo
gremmie@1 7 from potd.models import Current
gremmie@1 8 from potd.models import Sequence
gremmie@1 9
gremmie@1 10 class PhotoAdmin(admin.ModelAdmin):
gremmie@1 11 exclude = ('thumb', )
gremmie@1 12 raw_id_fields = ('user', )
gremmie@1 13
gremmie@1 14 class CurrentAdmin(admin.ModelAdmin):
gremmie@1 15 raw_id_fields = ('potd', )
gremmie@1 16
gremmie@1 17 admin.site.register(Photo, PhotoAdmin)
gremmie@1 18 admin.site.register(Current, CurrentAdmin)
gremmie@1 19 admin.site.register(Sequence)