annotate gpp/core/admin.py @ 507:8631d32e6b16

Some users are still having problems with the pop-up login. I think they are actually getting 403s because of the CSRF protection. So I have modified the base template to always have a javascript variable called csrf_token available when they aren't logged in. The ajax_login.js script was then modified to send this value with the ajax post. Fingers crossed.
author Brian Neal <bgneal@gmail.com>
date Sun, 04 Dec 2011 03:05:21 +0000
parents 48b221d304c6
children
rev   line source
bgneal@42 1 from django.contrib import admin
bgneal@42 2 from django.contrib.flatpages.models import FlatPage
bgneal@42 3 from django.contrib.flatpages.admin import FlatPageAdmin as FlatPageAdminOld
bgneal@42 4 from django.conf import settings
bgneal@42 5
bgneal@42 6 class FlatPageAdmin(FlatPageAdminOld):
bgneal@42 7 class Media:
bgneal@42 8 js = settings.GPP_THIRD_PARTY_JS['tiny_mce']
bgneal@42 9
bgneal@42 10 # We have to unregister it, and then reregister
bgneal@42 11 admin.site.unregister(FlatPage)
bgneal@42 12 admin.site.register(FlatPage, FlatPageAdmin)