diff options
author | Matthew Somerville <matthew-github@dracos.co.uk> | 2017-03-31 14:23:02 +0100 |
---|---|---|
committer | Matthew Somerville <matthew-github@dracos.co.uk> | 2017-03-31 14:23:02 +0100 |
commit | ed850c6d928acfa6898d67a9220b00ade64b45ea (patch) | |
tree | 33e94f379b1c60dcdfe35afe4d5d9f53ac1b591f /templates/web/seesomething/admin/stats.html | |
parent | 3d967f09d8171b283c9a90afa6407dc033e4ae42 (diff) |
[SeeSomething] Remove cobrand.
Diffstat (limited to 'templates/web/seesomething/admin/stats.html')
-rw-r--r-- | templates/web/seesomething/admin/stats.html | 63 |
1 files changed, 0 insertions, 63 deletions
diff --git a/templates/web/seesomething/admin/stats.html b/templates/web/seesomething/admin/stats.html deleted file mode 100644 index 155bff472..000000000 --- a/templates/web/seesomething/admin/stats.html +++ /dev/null @@ -1,63 +0,0 @@ -[% INCLUDE 'admin/header.html' title=loc('Reports') %] -[% PROCESS 'admin/report_blocks.html' %] - -[% BLOCK options %] - [% FOR option IN option_list %] - <option value="[% option %]"[% ' selected' IF selected == option %]>[% option %]</opytion> - [% END %] -[% END %] - -<form method="post" action="[% c.uri_for('stats') %]" enctype="application/x-www-form-urlencoded" accept-charset="utf-8" id="filter-form"> - <label for="form_category">Transport Type: </label> - <select class="form-control" name="category" id="form_category"> - <option value="">Select</option> - [% PROCESS options, option_list = [ 'Bus', 'Metro', 'Train' ], selected = category %] - </select> - - <label for="form_subcategory">Incident Type: </label> - <select class="form-control" name="subcategory" id="form_subcategory"> - <option value="">Select</option> - [% PROCESS options, option_list = ['Smoking', 'Drugs', 'Anti-social Behaviour', 'Loud Music', 'Damage', 'Feet on Seats', 'Other'], selected = subcategory %] - </select> - - <label for="form_service">Device: </label> - <select class="form-control" name="service" id="form_service"> - <option value="">Select</option> - [% PROCESS options, option_list = [ 'Android', 'iPhone' ], selected = service %] - </select> - - <input type="submit" class="btn" name="getcounts" size="30" id="getcounts" value="Look Up" /> -</form> - -[% IF pager.total_entries == 0 %] -<p align="center"> -No Results found -</p> -[% ELSE %] -<table class="admin-report"> - <thead> - <tr> - <th>Device</th> - <th>Transport Category</th> - <th>Incident Category</th> - <th>Area</th> - <th>Submitted</th> - </tr> - </thead> - <tbody> - [%- WHILE (report = reports.next) %] - <tr> - <td>[% report.service || 'Other' %]</td> - <td>[% report.category %]</td> - <td class="nowrap">[% report.subcategory %]</td> - <td class="nowrap">[% council_details.${report.bodies_str} %]</td> - <td class="nowrap">[% PROCESS format_time time=report.confirmed %]</td> - </tr> - [%- END %] - </tbody> -</table> -[% END %] - -[% INCLUDE 'pagination.html', param = 'p' %] - -[% INCLUDE 'admin/footer.html' %] |