aboutsummaryrefslogtreecommitdiffstats
path: root/templates/web/zurich/admin/index-dm.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/web/zurich/admin/index-dm.html')
-rw-r--r--templates/web/zurich/admin/index-dm.html36
1 files changed, 36 insertions, 0 deletions
diff --git a/templates/web/zurich/admin/index-dm.html b/templates/web/zurich/admin/index-dm.html
new file mode 100644
index 000000000..a88100ee4
--- /dev/null
+++ b/templates/web/zurich/admin/index-dm.html
@@ -0,0 +1,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 %]