blob: a88100ee4d31e0801bbee69e8b7de5527165d64d (
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
|
[% PROCESS 'admin/header.html' title=loc('Summary') -%]
[% PROCESS 'admin/report_blocks.html' %]
[% status_message %]
<h2>[% loc('Submitted') %]</h2>
[% INCLUDE list, problems = unconfirmed.all %]
<h2>[% loc('Planned') %]</h2>
[% INCLUDE list, problems = approval.all %]
<h2>[% loc('All reports') %]</h2>
[% INCLUDE list, problems = other.all, include_subdiv = 1 %]
[% INCLUDE 'admin/footer.html' %]
[% BLOCK list %]
<table cellspacing="0" cellpadding="2" border="1">
<tr>
<th>[% loc('ID') %]</th>
<th>[% loc('Description') %]</th>
<th>[% loc('Category') %]</th>
<th>[% loc('Submitted') %]</th>
<th>[% loc('Updated') %]</th>
<th>[% loc('Status') %]</th>
[% IF include_subdiv %]
<th>[% loc('Subdivision/Body') %]</th>
[% END %]
<th>*</th>
</tr>
<tr class="filter-row">
<td colspan="8"><input type="text" placeholder="[%= loc('Filter report list') %]" /></td>
</tr>
[% INCLUDE 'admin/problem_row.html' %]
</table>
[% END %]
|