blob: 8b6880c24281dd8668d3fbf1f2cbee13f224f962 (
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
36
37
38
39
40
41
42
|
[% SET body_name = body.name %]
[% IF c.cobrand.moniker == 'hounslow' %]
[% SET body_name = 'Hounslow Highways' %]
[% ELSIF c.cobrand.moniker == 'isleofwight' %]
[% SET body_name = 'Island Roads' %]
[% END %]
[%
PROCESS "report/photo-js.html";
PROCESS "maps/${map.type}.html";
SET bodyclass = 'mappage';
INCLUDE 'header.html',
title = 'Awaiting triage'
rss = [ tprintf(loc('Problems within %s, %s', "First %s is the body name, second %s the site name"), name, site_name), rss_url ]
%]
[% map_html | safe %]
</div>
<div id="map_sidebar">
<div id="side">
<h1 id="reports_heading">
Awaiting triage
</h1>
<section class="full-width">
[% INCLUDE "admin/triage/_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' %]
|