aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStruan Donald <struan@exo.org.uk>2011-10-03 10:36:56 +0100
committerStruan Donald <struan@exo.org.uk>2011-10-03 10:36:56 +0100
commitd690a5b920d5da86381513561b4439f5c9903945 (patch)
treeeb1531cf58b5b6bd4c87018fe3aa8795e098dc0b
parentb519cf6566b285ce7cb1e6a65da873a1da693a0f (diff)
Do not display Abandoned vehicle category on Southampton Cobrand
-rw-r--r--templates/web/southampton/report/new/category.html11
1 files changed, 11 insertions, 0 deletions
diff --git a/templates/web/southampton/report/new/category.html b/templates/web/southampton/report/new/category.html
new file mode 100644
index 000000000..871deab00
--- /dev/null
+++ b/templates/web/southampton/report/new/category.html
@@ -0,0 +1,11 @@
+[% FILTER collapse %]
+[% IF category_options.size %]
+ <label for='form_category'>[% category_label | html %]</label>
+ <select name='category' id='form_category'>
+ [% FOREACH cat_op IN category_options %]
+ [% NEXT IF cat_op == 'Abandoned vehicle' %]
+ <option value='[% cat_op | html %]'[% ' selected' IF report.category == cat_op %]>[% cat_op | html %]</option>
+ [% END %]
+ </select>
+[% END %]
+[% END -%]