aboutsummaryrefslogtreecommitdiffstats
path: root/templates/web/default/admin/user-form.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/web/default/admin/user-form.html')
-rw-r--r--templates/web/default/admin/user-form.html56
1 files changed, 0 insertions, 56 deletions
diff --git a/templates/web/default/admin/user-form.html b/templates/web/default/admin/user-form.html
deleted file mode 100644
index 4a57b05a0..000000000
--- a/templates/web/default/admin/user-form.html
+++ /dev/null
@@ -1,56 +0,0 @@
-<form method="post" action="[% c.uri_for( 'user_edit', user.id ) %]" enctype="application/x-www-form-urlencoded" accept-charset="utf-8">
- <input type="hidden" name="token" value="[% token %]" >
- <input type="hidden" name="submit" value="1" >
-
- [% IF c.cobrand.moniker == 'zurich' AND field_errors.email %]
- <p class='error'>[% field_errors.email %]</p>
- [% END %]
- <ul class="no-bullets">
- <li>
- <div class="admin-hint">
- <p>
- [% loc(
- "The user's <strong>name</strong> is displayed publicly on reports that have not been marked <em>anonymous</em>.
- Names are not necessarily unique.")
- %]
- </p>
- </div>
- [% loc('Name:') %] <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>
- <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 id='body' name='body'>
- <option value=''>[% loc('No body') %]</option>
- [% FOR body IN bodies %]
- <option value="[% body.id %]"[% ' selected' IF body.id == user.from_body.id %]>[% body.name %]</option>
- [% END %]
- </li>
- </select>
- [% IF c.cobrand.moniker != 'zurich' %]
- <li>
- <div class="admin-hint">
- <p>
- [% loc("Mark users whose behaviour you want to keep a check on as <strong>flagged</strong>.") %]
- <br>
- [% tprintf(loc("Flagged users are listed on the <a href='%s'>flagged</a> page."), c.uri_for( 'flagged' )) %]
- <br>
- [% loc("You can add an abusive user's email to the abuse list, which automatically hides (and never sends) reports they create.") %]
- </p>
- </div>
-
- [% loc('Flagged:') %] <input type="checkbox" id="flagged" name="flagged"[% user.flagged ? ' checked' : '' %]>
- </li>
- [% END %]
- </ul>
- <input type="submit" name="Submit changes" value="[% loc('Submit changes') %]" >
-</form>