mirror of
https://github.com/journeyman-cc/smeagol.git
synced 2026-04-12 18:05:06 +00:00
23 lines
746 B
HTML
23 lines
746 B
HTML
{% extends "templates/base.html" %}
|
|
|
|
{% block content %}
|
|
<div id="content">
|
|
<table>
|
|
<tr>
|
|
<th/><th>{% i18n edit-col-hdr %}</th><th>{% i18n del-col-hdr %}</th>
|
|
</tr>
|
|
{% for user in users %}
|
|
<tr>
|
|
<td>{{user}}</td>
|
|
<td><a href="edit-user?target={{user}}">{% i18n edit-col-hdr %} {{user}}</a></td>
|
|
<td><a href="delete-user?target={{user}}">{% i18n del-col-hdr %} {{user}}</a></td>
|
|
</tr>
|
|
{% endfor %}
|
|
<tr>
|
|
<td><a href="edit-user">{% i18n add-user-label %}</a></td>
|
|
<td></td>
|
|
<td></td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
{% endblock %}
|