diff options
-rw-r--r-- | templates/web/southampton/report/new/category.html | 11 |
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 -%] |