mirror of
https://github.com/journeyman-cc/smeagol.git
synced 2026-04-12 18:05:06 +00:00
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:
parent
de7a553a86
commit
09fe67a26e
13 changed files with 351 additions and 193 deletions
12
resources/templates/edit-users.html
Normal file
12
resources/templates/edit-users.html
Normal 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 %}
|
||||
Loading…
Add table
Add a link
Reference in a new issue