annotate gpp/templates/news/index.html @ 479:32cec6cd8808

Refactor RateLimiter so that if Redis is not running, everything still runs normally (minus the rate limiting protection). My assumption that creating a Redis connection would throw an exception if Redis wasn't running was wrong. The exceptions actually occur when you issue a command. This is for #224.
author Brian Neal <bgneal@gmail.com>
date Sun, 25 Sep 2011 00:49:05 +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 %}