976f55e1b2
* Pagination for history and latest changes * New footer for historical pages * Fix pagination on history view. * Do not directly use git adapter * History view: allow selecting from different pages * Use log_pagination_options to determine latest changes parameters * Fix JS pageFullPath
12 lines
350 B
Plaintext
12 lines
350 B
Plaintext
<div id="pagination" class="pb-2 px-3">
|
|
<span id="prev" {{^previous_page}}hidden{{/previous_page}}>
|
|
<a href="?page_num={{previous_page}}">« Previous</a>
|
|
</span>
|
|
|
|
<span> </span>
|
|
|
|
<span id="next" class="float-right" {{^next_page}}hidden{{/next_page}}>
|
|
<a href="?page_num={{next_page}}">Next »</a>
|
|
</span>
|
|
</div>
|