annotate gpp/templates/forums/pagination.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 4c33e266db03
children
rev   line source
bgneal@93 1 <div class="forums-post-navigation">
bgneal@93 2 {% ifequal page.paginator.num_pages 1 %}
bgneal@93 3 Page 1 of 1
bgneal@93 4 {% else %}
bgneal@93 5 Goto Page:
bgneal@93 6 {% if page.has_previous %}
bgneal@93 7 <a href="./?page={{ page.previous_page_number }}">Previous</a>
bgneal@93 8 {% endif %}
bgneal@93 9 {% for num in page.page_range %}
bgneal@93 10 {% if num %}
bgneal@93 11 {% ifequal num page.number %}
bgneal@93 12 {{ num }}
bgneal@93 13 {% else %}
bgneal@93 14 <a href="./?page={{ num }}">{{ num }}</a>
bgneal@93 15 {% endifequal %}
bgneal@93 16 {% else %}
bgneal@93 17 &hellip;
bgneal@93 18 {% endif %}
bgneal@93 19 {% endfor %}
bgneal@93 20 {% if page.has_next %}
bgneal@93 21 <a href="./?page={{ page.next_page_number }}">Next</a>
bgneal@93 22 {% endif %}
bgneal@93 23 {% endifequal %}
bgneal@93 24 </div>