annotate gpp/templates/core/pagination.html @ 492:3c48a555298d

Added a custom tag to display a link to a profile. Refactored the avatar tag to optionally display a profile link around the image. Removed the width and height attributes from the avatar image tag. I think this was causing disk hits whenever those properties were not cached. The avatar tag is now an inclusion tag.
author Brian Neal <bgneal@gmail.com>
date Sat, 22 Oct 2011 00:07:50 +0000
parents 1246a4f1ab4f
children
rev   line source
gremmie@1 1 <div class="pagination">
gremmie@1 2 <ul>
gremmie@1 3 {% if page.has_previous %}
bgneal@240 4 <li class="prev"><a href="./?page={{ page.previous_page_number }}" title="Go to page {{ page.previous_page_number }}">&laquo; Previous</a></li>
gremmie@1 5 {% endif %}
gremmie@1 6 {% for num in page.page_range %}
gremmie@1 7 {% if num %}
gremmie@1 8 {% ifequal num page.number %}
gremmie@1 9 <li class="current">{{ num }}</li>
gremmie@1 10 {% else %}
bgneal@240 11 <li class="page"><a href="./?page={{ num }}" title="Go to page {{ num }}">{{ num }}</a></li>
gremmie@1 12 {% endifequal %}
gremmie@1 13 {% else %}
gremmie@1 14 <li>&hellip;</li>
gremmie@1 15 {% endif %}
gremmie@1 16 {% endfor %}
gremmie@1 17 {% if page.has_next %}
bgneal@240 18 <li class="next"><a href="./?page={{ page.next_page_number }}" title="Go to page {{ page.next_page_number }}">Next &raquo;</a></li>
gremmie@1 19 {% endif %}
gremmie@1 20 </ul>
gremmie@1 21 </div>
gremmie@1 22 <br clear="left" />