Mercurial > public > sg101
view gpp/templates/news/index.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 | f0f3966ea44f |
children |
line wrap: on
line source
{% extends 'news/base.html' %} {% load script_tags %} {% block title %}News: {{ title }}{% endblock %} {% block news_css %} <link rel="stylesheet" type="text/css" href="{{ STATIC_URL }}css/pagination.css" /> {% endblock %} {% block begin_body %}{% include 'core/social_sharing_begin.html' %}{% endblock %} {% block news_content %} <h3>{{ title }}</h3> {% if page.object_list %} {% include 'core/pagination.html' %} {% for story in page.object_list %} {% include 'news/story_summary.html' %} {% endfor %} {% include 'core/pagination.html' %} <div style="clear:right;"></div> {% else %} <p>No news at this time.</p> {% endif %} {% endblock %} {% block end_body %}{% include 'core/social_sharing_end.html' %}{% endblock %}