aboutsummaryrefslogtreecommitdiffstats
path: root/templates/web/base/admin/user-form.html
diff options
context:
space:
mode:
authorMatthew Somerville <matthew-github@dracos.co.uk>2016-11-15 14:01:44 +0000
committerMatthew Somerville <matthew-github@dracos.co.uk>2016-11-15 14:01:44 +0000
commitc94ed4479f26b6d4cee0bf16cac47a88ee7f6cae (patch)
tree443fef62bd66072432f04cc0d2b604b9be86c5d1 /templates/web/base/admin/user-form.html
parentdace204d71f395b07c4f746599bc9f3d6e620886 (diff)
parent46f4eda18358418fd8460e7b6182b5d2a65f859d (diff)
Merge branch 'version-2.0'v2.0
Diffstat (limited to 'templates/web/base/admin/user-form.html')
-rw-r--r--templates/web/base/admin/user-form.html30
1 files changed, 15 insertions, 15 deletions
diff --git a/templates/web/base/admin/user-form.html b/templates/web/base/admin/user-form.html
index cfd85b465..17230e940 100644
--- a/templates/web/base/admin/user-form.html
+++ b/templates/web/base/admin/user-form.html
@@ -21,22 +21,22 @@
<li><label for="phone">[% loc('Phone:') %]</label>
<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>
- <div class="admin-hint">
- <p>
- [% loc(
- "Normal (public) users should not be associated with any <strong>body</strong>.<br>
- Authorised staff users can be associated with the body they represent.<br>
- Depending on the implementation, staff users may have access to the dashboard (summary of
- activity across their body), the ability to hide reports or set special report statuses.")
- %]
- </p>
- </div>
- [% loc('Body:') %] <select class="form-control" id='body' name='body'>
- <option value=''>[% loc('No body') %]</option>
+ [% IF c.user.is_superuser || c.cobrand.moniker == 'zurich' %]
+ <li>
+ <div class="admin-hint">
+ <p>
+ [% loc(
+ "Normal (public) users should not be associated with any <strong>body</strong>.<br>
+ Authorised staff users can be associated with the body they represent.<br>
+ Depending on the implementation, staff users may have access to the dashboard (summary of
+ activity across their body), the ability to hide reports or set special report statuses.")
+ %]
+ </p>
+ </div>
+ [% 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>
+ <option value="[% body.id %]"[% ' selected data-originally-selected' IF body.id == user.from_body.id %]>[% body.name %]</option>
[% END %]
</select>
</li>