diff options
author | Andrew Godwin | 2022-12-16 16:38:52 -0700 |
---|---|---|
committer | Andrew Godwin | 2022-12-16 16:38:52 -0700 |
commit | 45c6978bc397691b22db0360b16b19979eac7dce (patch) | |
tree | 8e22839cd8a7b685f1d4491762c5d56aa5960dee /templates/admin/user_edit.html | |
parent | 1bcdff79e7e14b2166056d3b16531b32474c374b (diff) | |
download | takahe-45c6978bc397691b22db0360b16b19979eac7dce.tar.gz takahe-45c6978bc397691b22db0360b16b19979eac7dce.tar.bz2 takahe-45c6978bc397691b22db0360b16b19979eac7dce.zip |
User admin and LD schema fixes
Diffstat (limited to 'templates/admin/user_edit.html')
-rw-r--r-- | templates/admin/user_edit.html | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/templates/admin/user_edit.html b/templates/admin/user_edit.html new file mode 100644 index 0000000..b795848 --- /dev/null +++ b/templates/admin/user_edit.html @@ -0,0 +1,36 @@ +{% extends "settings/base.html" %} + +{% block subtitle %}{{ user.email }}{% endblock %} + +{% block content %} + <h1>{{ editing_user.email }}</h1> + <form action="." method="POST"> + {% csrf_token %} + <fieldset> + <legend>Permissions</legend> + {% include "forms/_field.html" with field=form.status %} + {% if same_user %} + <ul class="errorlist"> + <li>You cannot edit your own permission status!</li> + </ul> + {% endif %} + </fieldset> + <fieldset> + <legend>Identities</legend> + {% for identity in editing_user.identities.all %} + {% include "activities/_identity.html" %} + {% empty %} + <p>This user has no identities yet.</p> + {% endfor %} + </fieldset> + <fieldset> + <legend>Dates</legend> + <p>Last seen: <time title="{{ editing_user.last_seen }} UTC">{{ editing_user.last_seen | timesince }} ago</time></p> + <p>Created: <time title="{{ editing_user.created }} UTC">{{ editing_user.created | timesince }} ago</time></p> + </fieldset> + <div class="buttons"> + <a href="{{ editing_user.urls.admin }}" class="button secondary left">Back</a> + <button>Save</button> + </div> + </form> +{% endblock %} |