annotate gpp/potd/admin.py @ 322:c3d3d7114749

Fix #148; Django now requires AJAX posts to present the CSRF token. Added code suggested by Django docs to shoutbox.js. Since shoutbox.js is on every page, it should cover all cases.
author Brian Neal <bgneal@gmail.com>
date Sat, 12 Feb 2011 21:37:17 +0000
parents ded03f2513e9
children 3c951521e0ec
rev   line source
gremmie@1 1 """
gremmie@1 2 This file contains the admin definitions for the POTD application.
gremmie@1 3 """
bgneal@267 4 from django.contrib import admin
bgneal@267 5 from django.conf import settings
gremmie@1 6
gremmie@1 7 from potd.models import Photo
gremmie@1 8 from potd.models import Current
gremmie@1 9 from potd.models import Sequence
gremmie@1 10
bgneal@267 11
gremmie@1 12 class PhotoAdmin(admin.ModelAdmin):
gremmie@1 13 exclude = ('thumb', )
gremmie@1 14 raw_id_fields = ('user', )
gremmie@1 15
bgneal@267 16 class Media:
bgneal@267 17 js = settings.GPP_THIRD_PARTY_JS['tiny_mce']
bgneal@267 18
gremmie@1 19 class CurrentAdmin(admin.ModelAdmin):
gremmie@1 20 raw_id_fields = ('potd', )
gremmie@1 21
gremmie@1 22 admin.site.register(Photo, PhotoAdmin)
gremmie@1 23 admin.site.register(Current, CurrentAdmin)
gremmie@1 24 admin.site.register(Sequence)