annotate gpp/templates/weblinks/view_links.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
rev   line source
gremmie@1 1 {% extends 'weblinks/base.html' %}
bgneal@310 2 {% load url from future %}
gremmie@1 3 {% block title %}Web Links: {{ category.title }}{% endblock %}
gremmie@1 4 {% block weblinks_css %}
bgneal@312 5 <link rel="stylesheet" type="text/css" href="{{ STATIC_URL }}css/tab-nav.css" />
bgneal@312 6 <link rel="stylesheet" type="text/css" href="{{ STATIC_URL }}css/pagination.css" />
gremmie@1 7 {% endblock %}
bgneal@165 8 {% block weblinks_js %}
bgneal@312 9 <script type="text/javascript" src="{{ STATIC_URL }}js/weblinks.js"></script>
bgneal@165 10 {% endblock %}
gremmie@1 11 {% block weblinks_content %}
gremmie@1 12 <h3>Category: {{ category.title }}</h3>
gremmie@1 13
gremmie@1 14 {% if page.object_list %}
gremmie@1 15 <ul class="tab-nav">
bgneal@310 16 <li><a href="{% url 'weblinks-view_links' slug=category.slug sort="title" %}"
gremmie@1 17 {% ifequal s "title" %}class="active" {% endifequal %}>Title</a></li>
bgneal@310 18 <li><a href="{% url 'weblinks-view_links' slug=category.slug sort="date" %}"
gremmie@1 19 {% ifequal s "date" %}class="active"{% endifequal %}>Date</a></li>
bgneal@310 20 <li><a href="{% url 'weblinks-view_links' slug=category.slug sort="hits" %}"
gremmie@1 21 {% ifequal s "hits" %}class="active"{% endifequal %}>Hits</a></li>
gremmie@1 22 </ul>
gremmie@1 23
gremmie@1 24 {% include 'core/pagination.html' %}
gremmie@1 25
gremmie@1 26 <dl>
gremmie@1 27 {% for link in page.object_list %}
gremmie@1 28 {% include 'weblinks/link.html' %}
gremmie@1 29 {% endfor %}
gremmie@1 30 </dl>
gremmie@1 31
gremmie@1 32 {% include 'core/pagination.html' %}
gremmie@1 33 {% endif %}
gremmie@1 34 {% endblock %}