diff options
author | Matthew Somerville <matthew@mysociety.org> | 2014-07-07 16:59:23 +0100 |
---|---|---|
committer | Matthew Somerville <matthew@mysociety.org> | 2014-07-08 17:59:17 +0100 |
commit | ba8d2c4ba6f6c0216d618e77d368b640a2b92d1e (patch) | |
tree | 8b9e1a960f91c006606b5e0767a84a400dfc2fb0 /templates/web/default/pagination.html | |
parent | 8f2c5942e3aa5d3b85e76b7353ab7ada87f97fc6 (diff) |
Rename 'default' web directory to 'base'.
This should reduce confusion with the Default cobrand and override order.
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 %] |