~netlandish/django-pagination

4d9362dc29cdd664d9b12f8f7a5e7acc0afac531 — floguy 16 years ago 69ed051
Nitpicky thing with the templates.


git-svn-id: https://django-pagination.googlecode.com/svn/trunk@12 7f1efe38-554e-0410-b69d-834cb44da2d5
1 files changed, 2 insertions(+), 1 deletions(-)

M pagination/templates/pagination/pagination.html
M pagination/templates/pagination/pagination.html => pagination/templates/pagination/pagination.html +2 -1
@@ 1,7 1,8 @@
{% if is_paginated %}
<div class="pagination">
    {% if page_obj.has_previous %}<a href="?page={{ page_obj.previous_page_number }}" class="prev">&lsaquo;&lsaquo; previous</a> {% else %}<span class="disabled prev">&lsaquo;&lsaquo; previous</span> {% endif %}
    {% for page in pages %}{% if page %}{% ifequal page page_obj.number %}<span class="current page">{{ page }}</span> {% else %}<a href="?page={{ page }}" class="page">{{ page }}</a> {% endifequal %}{% else %} ... {% endif %}{% endfor %}
    {% for page in pages %}{% if page %}{% ifequal page page_obj.number %}<span class="current page">{{ page }}</span> {% else %}<a href="?page={{ page }}" class="page">{{ page }}</a> {% endifequal %}{% else %} ... {% endif %}
    {% endfor %}
    {% if page_obj.has_next %}<a href="?page={{ page_obj.next_page_number }}" class="next">next &rsaquo;&rsaquo;</a>{% else %}<span class="disabled next">next &rsaquo;&rsaquo;</span>{% endif %}
</div>
{% endif %}
\ No newline at end of file