blob: eb67247c4ca65220999be38d56236b41616b3cab (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
[%
SET bodyclass = 'mappage';
PROCESS "report/photo-js.html";
PROCESS "maps/${map.type}.html" IF problems.size;
INCLUDE 'header.html', title = loc('Your shortlist')
%]
[% IF problems.size %]
[% map_html %]
</div>
<div id="map_sidebar">
<div id="side">
[% ELSE %]
<div id="map_sidebar">
<div id="skipped-map">
[% END %]
<h1>[% loc('Your shortlist') %]</h1>
[% IF ! has_content %]
[% loc('You haven’t shortlisted any reports yet.') %]
[% END %]
<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>
</div>
</div>
[% INCLUDE 'footer.html' %]
|