diff options
Diffstat (limited to 'templates/web/base/pagination.html')
-rw-r--r-- | templates/web/base/pagination.html | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/templates/web/base/pagination.html b/templates/web/base/pagination.html index 63180b600..f0c51bb10 100644 --- a/templates/web/base/pagination.html +++ b/templates/web/base/pagination.html @@ -1,7 +1,4 @@ [% 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> @@ -13,7 +10,4 @@ <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 %] |