This repository has been archived on 2024-11-20. You can view files and clone it, but cannot push or open issues or pull requests.
old-scribeengine/scribeengine/templates/pagination.mako

12 lines
433 B
Plaintext
Raw Normal View History

<div class="pagination">
% if c.prev_page:
<a href="${c.first_page}" title="First">&lt;&lt; First</a>
<a href="${c.prev_page}" title="Previous">&lt; Previous</a> |
% endif
${c.list_start} to ${c.list_end} of ${c.list_total}
% if c.next_page:
| <a href="${c.next_page}" title="Next">Next &gt;</a>
<a href="${c.last_page}" title="Last">Last &gt;&gt;</a>
% endif
</div>