Seems all to be working now. You can't actually delete users through the user

interface, but you can add and edit them.
This commit is contained in:
simon 2016-09-11 16:01:51 +01:00
parent de7a553a86
commit 09fe67a26e
13 changed files with 351 additions and 193 deletions

View file

@ -0,0 +1,12 @@
{% extends "templates/base.html" %}
{% block content %}
<div id="content">
<ul>
{% for user in users %}
<li><a href="edit-user?target={{user}}">{{user}}</a></li>
{% endfor %}
<li><a href="edit-user">Add new user</a></li>
</ul>
</div>
{% endblock %}