diff options
Diffstat (limited to 'templates')
-rw-r--r-- | templates/web/base/my/my.html | 7 | ||||
-rw-r--r-- | templates/web/base/my/planned.html | 3 | ||||
-rw-r--r-- | templates/web/base/pagination.html | 4 | ||||
-rwxr-xr-x | templates/web/base/reports/body.html | 9 |
4 files changed, 19 insertions, 4 deletions
diff --git a/templates/web/base/my/my.html b/templates/web/base/my/my.html index 69f686f68..a61a8ea44 100644 --- a/templates/web/base/my/my.html +++ b/templates/web/base/my/my.html @@ -1,5 +1,6 @@ [% SET bodyclass = 'mappage'; + PROCESS "report/photo-js.html"; PROCESS "maps/${map.type}.html" IF problems.size; INCLUDE 'header.html', title = loc('Your Reports') %] @@ -37,8 +38,12 @@ <section class="full-width"> [% INCLUDE "reports/_list-filters.html", use_form_wrapper = 1 %] +<div class="js-pagination"> [% INCLUDE 'pagination.html', pager = problems_pager, param = 'p' %] -[% INCLUDE 'my/_problem-list.html' %] +</div> +<div id="js-reports-list"> + [% INCLUDE 'my/_problem-list.html' %] +</div> </section> [% FOREACH u IN updates %] diff --git a/templates/web/base/my/planned.html b/templates/web/base/my/planned.html index 19d29f970..eb67247c4 100644 --- a/templates/web/base/my/planned.html +++ b/templates/web/base/my/planned.html @@ -1,5 +1,6 @@ [% SET bodyclass = 'mappage'; + PROCESS "report/photo-js.html"; PROCESS "maps/${map.type}.html" IF problems.size; INCLUDE 'header.html', title = loc('Your shortlist') %] @@ -22,7 +23,9 @@ <section class="full-width"> [% INCLUDE "reports/_list-filters.html", use_form_wrapper = 1 %] +<div class="js-pagination"> [% INCLUDE 'pagination.html', pager = problems_pager, param = 'p' %] +</div> [% INCLUDE 'my/_problem-list.html' %] </section> diff --git a/templates/web/base/pagination.html b/templates/web/base/pagination.html index f0c51bb10..448186838 100644 --- a/templates/web/base/pagination.html +++ b/templates/web/base/pagination.html @@ -1,13 +1,13 @@ [% IF pager.last_page > 1 %] <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> + <a class="prev" href="[% c.uri_with({ $param => pager.previous_page, ajax => undefined }) %][% '#' _ 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> + <a class="next" href="[% c.uri_with({ $param => pager.next_page, ajax => undefined }) %][% '#' _ hash IF hash %]">[% loc('Next') %]</a> [% END %] </p> [% END %] diff --git a/templates/web/base/reports/body.html b/templates/web/base/reports/body.html index d0961d2f6..929a4a527 100755 --- a/templates/web/base/reports/body.html +++ b/templates/web/base/reports/body.html @@ -17,6 +17,7 @@ [% END %] [% + PROCESS "report/photo-js.html"; PROCESS "maps/${map.type}.html"; SET bodyclass = 'mappage'; INCLUDE 'header.html', @@ -61,9 +62,15 @@ <section class="full-width"> [% INCLUDE "reports/_list-filters.html", use_form_wrapper = 1 %] +<div class="js-pagination"> [% INCLUDE 'pagination.html', param = 'p' %] -[% INCLUDE 'reports/_problem-list.html' %] +</div> +<div id="js-reports-list"> + [% INCLUDE 'reports/_problem-list.html' %] +</div> +<div class="js-pagination"> [% INCLUDE 'pagination.html', param = 'p' %] +</div> </section> </div> |