diff options
author | Matthew Somerville <matthew-github@dracos.co.uk> | 2016-06-22 14:45:49 +0100 |
---|---|---|
committer | Matthew Somerville <matthew-github@dracos.co.uk> | 2016-06-22 15:14:28 +0100 |
commit | 0c69e124a57891aa84aaf7c25773738db2a108c2 (patch) | |
tree | 98f710a5b4ea7c3298b4c33c715ed5ffd82cebfa /templates/web/base/admin/user-form.html | |
parent | 3aa1096003e9a0413f6d8e8f961ec55554856ed1 (diff) |
Allow admin to edit user's phone number.
Diffstat (limited to 'templates/web/base/admin/user-form.html')
-rw-r--r-- | templates/web/base/admin/user-form.html | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/templates/web/base/admin/user-form.html b/templates/web/base/admin/user-form.html index b863bf96a..d6456f3d9 100644 --- a/templates/web/base/admin/user-form.html +++ b/templates/web/base/admin/user-form.html @@ -15,9 +15,13 @@ %] </p> </div> - [% loc('Name:') %] <input type='text' name='name' id='name' value='[% user.name | html %]'> + <label for="name">[% loc('Name:') %]</label> + <input type='text' name='name' id='name' value='[% user.name | html %]'> </li> - <li>[% loc('Email:') %] <input type='text' id='email' name='email' value='[% user.email | html %]'></li> + <li><label for="email">[% loc('Email:') %]</label> + <input type='text' 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> <li> <div class="admin-hint"> <p> |