comparison gpp/templates/messages/pagination.html @ 425:76ba9478ebbd

Initial beta-test commit of a revamped, jquery ui tab-based PM system. This is for #211.
author Brian Neal <bgneal@gmail.com>
date Tue, 26 Apr 2011 00:16:35 +0000
parents
children
comparison
equal deleted inserted replaced
424:8df6e9edac22 425:76ba9478ebbd
1 <div class="pagination">
2 <span class="step-links">
3 {% if msgs.has_previous %}
4 <a href="{{ url }}?page={{ msgs.previous_page_number }}" onclick="return ajaxPageFetch(this);">&laquo; Previous</a>
5 {% endif %}
6
7 <span class="current">
8 Page {{ msgs.number }} of {{ msgs.paginator.num_pages }}.
9 </span>
10
11 {% if msgs.has_next %}
12 <a href="{{ url }}?page={{ msgs.next_page_number }}" onclick="return ajaxPageFetch(this);">Next &raquo;</a>
13 {% endif %}
14 </span>
15 </div>