diff options
author | Matthew Somerville <matthew-github@dracos.co.uk> | 2016-10-04 11:46:29 +0100 |
---|---|---|
committer | Matthew Somerville <matthew-github@dracos.co.uk> | 2016-10-04 11:58:06 +0100 |
commit | 505aa9bcba1fe2f419e95cfa5122fab83b6f6ae0 (patch) | |
tree | 9a2118ee5dc352d7a037626a101f1697c40d5210 /templates/web/base/admin/user-form.html | |
parent | ead4a7ebbd33ac3e6e2c6bf3cb0302189eae99d1 (diff) | |
parent | d8fdbf5d353238d9e4c334f06de251987f7e60cf (diff) |
Merge branch 'issues/forcouncils/36-mobile-inspector-improvements'
Diffstat (limited to 'templates/web/base/admin/user-form.html')
-rw-r--r-- | templates/web/base/admin/user-form.html | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/templates/web/base/admin/user-form.html b/templates/web/base/admin/user-form.html index 87324666d..5adc200a1 100644 --- a/templates/web/base/admin/user-form.html +++ b/templates/web/base/admin/user-form.html @@ -16,12 +16,12 @@ </p> </div> <label for="name">[% loc('Name:') %]</label> - <input type='text' name='name' id='name' value='[% user.name | html %]'> + <input type='text' class="form-control" name='name' id='name' value='[% user.name | html %]'> </li> <li><label for="email">[% loc('Email:') %]</label> - <input type='text' id='email' name='email' value='[% user.email | html %]'></li> + <input type='text' class="form-control" id='email' name='email' value='[% user.email | html %]'></li> <li><label for="phone">[% loc('Phone:') %]</label> - <input type='text' id='phone' name='phone' value='[% user.phone | html %]'></li> + <input type='text' class="form-control" id='phone' name='phone' value='[% user.phone | html %]'></li> [% IF c.user.is_superuser || c.cobrand.moniker == 'zurich' %] <li> @@ -35,7 +35,7 @@ %] </p> </div> - [% loc('Body:') %] <select id='body' name='body'> + [% loc('Body:') %] <select class="form-control" id='body' name='body'> <option value=''>[% loc('No body') %]</option> [% FOR body IN bodies %] <option value="[% body.id %]"[% ' selected data-originally-selected' IF body.id == user.from_body.id %]>[% body.name %]</option> @@ -64,7 +64,7 @@ </p> </div> [% loc('Area:') %] - <select id='area_id' name='area_id' [% 'disabled' UNLESS c.user.has_permission_to('user_assign_areas', user.from_body.id) %]> + <select class="form-control" id='area_id' name='area_id' [% 'disabled' UNLESS c.user.has_permission_to('user_assign_areas', user.from_body.id) %]> <option value=''>[% loc('No area') %]</option> [% FOREACH area IN areas %] <option value="[% area.id %]"[% ' selected' IF area.id == user.area_id %]>[% area.name | html %]</option> @@ -98,7 +98,7 @@ </div> [% IF c.user.is_superuser %] [% loc('Trusted by bodies:') %]<br /> - <select id='body' name='trusted_bodies' multiple> + <select class="form-control" id='body' name='trusted_bodies' multiple> [% FOR body IN bodies %] <option value="[% body.id %]"[% ' selected' IF user.has_permission_to('trusted', body.id) %]>[% body.name %]</option> [% END %] @@ -159,5 +159,5 @@ [% END %] [% END %] </ul> - <input type="submit" name="Submit changes" value="[% loc('Submit changes') %]" > + <input type="submit" class="btn" name="Submit changes" value="[% loc('Submit changes') %]" > </form> |