diff options
Diffstat (limited to 'templates/web/default/pagination.html')
-rw-r--r-- | templates/web/default/pagination.html | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/templates/web/default/pagination.html b/templates/web/default/pagination.html deleted file mode 100644 index 63180b600..000000000 --- a/templates/web/default/pagination.html +++ /dev/null @@ -1,19 +0,0 @@ -[% IF pager.last_page > 1 %] -[% IF NOT admin %] -<section class="full-width"> -[% END %] - <p class="pagination"> - [% IF pager.previous_page %] - <a class="prev" href="[% c.req.uri_with({ $param => pager.previous_page }) %][% '#' _ hash IF hash %]">[% loc('Previous') %]</a> - [% END %] - - [% tprintf( loc('%d to %d of %d'), pager.first, pager.last, pager.total_entries ) %] - - [% IF pager.next_page %] - <a class="next" href="[% c.req.uri_with({ $param => pager.next_page }) %][% '#' _ hash IF hash %]">[% loc('Next') %]</a> - [% END %] - </p> -[% IF NOT admin %] -</section> -[% END %] -[% END %] |