aboutsummaryrefslogtreecommitdiffstats
path: root/templates/web/base/report
diff options
context:
space:
mode:
authorDave Arter <davea@mysociety.org>2016-10-19 15:32:35 +0100
committerDave Arter <davea@mysociety.org>2016-10-19 15:32:35 +0100
commit92d76f79e62d98f89f77e6f6d5b8f1bef67d8b42 (patch)
tree186635567dfaa4cda81a54d9e54a60e0f723cdfd /templates/web/base/report
parent4df7c01eb718bd51db1cc6078623e7b381a66d82 (diff)
Add ‘form-control’ class where missing from <select> elements
Diffstat (limited to 'templates/web/base/report')
-rw-r--r--templates/web/base/report/new/extra_name.html2
-rw-r--r--templates/web/base/report/update/form_name.html2
2 files changed, 2 insertions, 2 deletions
diff --git a/templates/web/base/report/new/extra_name.html b/templates/web/base/report/new/extra_name.html
index 2838645af..bad03e37f 100644
--- a/templates/web/base/report/new/extra_name.html
+++ b/templates/web/base/report/new/extra_name.html
@@ -6,7 +6,7 @@
[% title = '' %]
[% IF fms_extra_title %][% title = fms_extra_title | upper %]
[% ELSIF c.user && c.user.title %][% title = c.user.title | upper %][% END %]
-<select class="form-focus-trigger required js-form-name" id="form_fms_extra_title"
+<select class="form-control form-focus-trigger required js-form-name" id="form_fms_extra_title"
name="fms_extra_title">
<option></option>
<option value="MR"[% ' selected' IF title == 'MR' %]>Mr</option>
diff --git a/templates/web/base/report/update/form_name.html b/templates/web/base/report/update/form_name.html
index 33887117a..926e16878 100644
--- a/templates/web/base/report/update/form_name.html
+++ b/templates/web/base/report/update/form_name.html
@@ -7,7 +7,7 @@
[% IF can_contribute_as_another_user OR can_contribute_as_body %]
<label for="form_as">[% loc('Provide update as') %]</label>
- <select id="form_as" class="js-contribute-as" name="form_as">
+ <select id="form_as" class="form-control js-contribute-as" name="form_as">
<option value="myself" selected>[% loc('Yourself') %]</option>
[% IF can_contribute_as_another_user %]
<option value="another_user">[% loc('Another user') %]</option>