annotate gpp/templates/bio/base.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 88b2b9cb8c1f
children
rev   line source
gremmie@1 1 {% extends 'base.html' %}
gremmie@1 2 {% block custom_css %}
bgneal@312 3 <link rel="stylesheet" type="text/css" href="{{ STATIC_URL }}css/bio.css" />
gremmie@1 4 {% block bio_css %}{% endblock %}
gremmie@1 5 {% endblock %}
gremmie@1 6 {% block content %}
gremmie@1 7 {% endblock %}