blob: fd0efcf9417b89e97f0035e2259649eff37d82b0 (
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
|
[%
PROCESS "maps/${map.type}.html";
INCLUDE 'header.html',
title = loc('Summary reports'),
bodyclass = 'mappage';
%]
[% map_html %]
</div>
<div id="side">
<h1>[% loc('All Reports') %]</h1>
[% INCLUDE 'pagination.html', param = 'p' %]
<section class="full-width">
[% IF problems.0 %]
<ul class="item-list item-list--reports">
[% FOREACH problem IN problems.0 %]
[% INCLUDE 'reports/_list-entry.html' %]
[% END %]
</ul>
[% END %]
</section>
[% INCLUDE 'pagination.html', param = 'p' %]
</div>
[% INCLUDE 'footer.html' %]
|