annotate gpp/templates/news/index.html @ 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 88b2b9cb8c1f
children bbbc357ac5f3
rev   line source
gremmie@1 1 {% extends 'news/base.html' %}
gremmie@1 2 {% block title %}News: {{ title }}{% endblock %}
gremmie@1 3 {% block news_css %}
bgneal@312 4 <link rel="stylesheet" type="text/css" href="{{ STATIC_URL }}css/pagination.css" />
gremmie@1 5 {% endblock %}
gremmie@1 6 {% block news_content %}
gremmie@1 7 <h3>{{ title }}</h3>
gremmie@1 8
bgneal@240 9 {% if page.object_list %}
gremmie@1 10 {% include 'core/pagination.html' %}
gremmie@1 11 {% for story in page.object_list %}
gremmie@1 12 {% include 'news/story_summary.html' %}
gremmie@1 13 {% endfor %}
bgneal@240 14 {% include 'core/pagination.html' %}
gremmie@1 15 <div style="clear:right;"></div>
gremmie@1 16 {% else %}
bgneal@240 17 <p>No news at this time.</p>
gremmie@1 18 {% endif %}
gremmie@1 19
gremmie@1 20 {% endblock %}