diff options
Diffstat (limited to 'templates/web/zurich/admin/index-sdm.html')
-rw-r--r-- | templates/web/zurich/admin/index-sdm.html | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/templates/web/zurich/admin/index-sdm.html b/templates/web/zurich/admin/index-sdm.html new file mode 100644 index 000000000..4e4009c16 --- /dev/null +++ b/templates/web/zurich/admin/index-sdm.html @@ -0,0 +1,33 @@ +[% PROCESS 'admin/header.html' title=loc('Summary') -%] +[% PROCESS 'admin/report_blocks.html' %] + +<h2>[% loc('New reports') %]</h2> +[% INCLUDE list, problems = reports_new.all %] + +<h2>[% loc('Reports awaiting approval') %]</h2> +[% INCLUDE list, problems = reports_unpublished.all, no_edit = 1 %] + +<h2>[% loc('Reports published') %]</h2> +[% INCLUDE list, problems = reports_published.all, no_edit = 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 NOT no_edit %] + <th>*</th> + [% END %] + </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 %] |