diff options
author | Struan Donald <struan@exo.org.uk> | 2012-12-21 16:01:37 +0000 |
---|---|---|
committer | Struan Donald <struan@exo.org.uk> | 2012-12-21 16:01:37 +0000 |
commit | 22e46ae5bd22b68817f74990c9a87408c7842c55 (patch) | |
tree | 103f518af5a1275ab9bc66715341a5daacb8cc2d | |
parent | 58367bc7d95c365401a9f1fb94bf7461c64771bc (diff) |
remove id and details from reporting
-rw-r--r-- | perllib/FixMyStreet/Cobrand/SeeSomething.pm | 2 | ||||
-rw-r--r-- | templates/web/seesomething/admin/stats.html | 4 |
2 files changed, 1 insertions, 5 deletions
diff --git a/perllib/FixMyStreet/Cobrand/SeeSomething.pm b/perllib/FixMyStreet/Cobrand/SeeSomething.pm index 2b32d262e..e445ff435 100644 --- a/perllib/FixMyStreet/Cobrand/SeeSomething.pm +++ b/perllib/FixMyStreet/Cobrand/SeeSomething.pm @@ -131,7 +131,7 @@ sub admin_stats { }, { columns => [ qw( - id detail service category subcategory council confirmed + service category subcategory council confirmed ) ], order_by => { -desc=> [ 'confirmed' ] }, rows => 20, diff --git a/templates/web/seesomething/admin/stats.html b/templates/web/seesomething/admin/stats.html index f2229372f..7e45646db 100644 --- a/templates/web/seesomething/admin/stats.html +++ b/templates/web/seesomething/admin/stats.html @@ -37,8 +37,6 @@ No Results found <table class="admin-report"> <thead> <tr> - <th>ID</th> - <th>Description</th> <th>Device</th> <th>Transport Category</th> <th>Incident Category</th> @@ -49,8 +47,6 @@ No Results found <tbody> [%- WHILE (report = reports.next) %] <tr> - <td>[% report.id %]</td> - <td>[% report.detail %]</td> <td>[% report.service %]</td> <td>[% report.category %]</td> <td class="nowrap">[% report.subcategory %]</td> |