blob: f2a604c25b69ea45d17238590ef3e28d95b02308 (
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
|
[%
PROCESS "report/photo-js.html";
PROCESS "maps/${map.type}.html";
SET bodyclass = 'mappage';
INCLUDE 'header.html',
title = loc('Summary reports');
%]
[% map_html | safe %]
</div>
<div id="map_sidebar">
<div id="side">
<h1>[% loc('All Reports') %]</h1>
<section class="full-width">
[% INCLUDE "reports/_list-filters.html", use_form_wrapper = 1 %]
<div class="js-pagination">
[% INCLUDE 'pagination.html', param = 'p' %]
</div>
<div id="js-reports-list">
[% INCLUDE 'reports/_problem-list.html' %]
</div>
<div class="js-pagination">
[% INCLUDE 'pagination.html', param = 'p' %]
</div>
</section>
</div>
</div>
[% INCLUDE 'footer.html' %]
|