annotate gpp/templates/admin/gcalendar/event/change_list.html @ 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 5be072292e2d
children
rev   line source
bgneal@456 1 {% extends "admin/change_list.html" %}
bgneal@456 2 {% block object-tools %}
bgneal@456 3 {% if has_add_permission %}
bgneal@456 4 <ul class="object-tools"><li><a href="add/{% if is_popup %}?_popup=1{% endif %}" class="addlink">Add {{ name }}</a></li>
bgneal@456 5 <li><a href="google_sync/">Google Sync</a></li>
bgneal@456 6 </ul>
bgneal@456 7 {% endif %}
bgneal@456 8 {% endblock %}