mirror of
https://github.com/journeyman-cc/smeagol.git
synced 2026-04-12 18:05:06 +00:00
Rather nice and satisfactory. Slightly conflates the issue of configuration and internationalisation at present, but I think internationalisation is a target to hit as a separate job.
21 lines
685 B
HTML
21 lines
685 B
HTML
{% extends "templates/base.html" %}
|
|
|
|
{% block content %}
|
|
<div id="content">
|
|
<table>
|
|
<tr>
|
|
<th>{{config.edit-col-hdr}}</th><th>{{config.del-col-hdr}}</th>
|
|
</tr>
|
|
{% for user in users %}
|
|
<tr>
|
|
<td><a href="edit-user?target={{user}}">{{config.edit-col-hdr}} {{user}}</a></td>
|
|
<td><a href="delete-user?target={{user}}">{{config.del-col-hdr}} {{user}}</a></td>
|
|
</tr>
|
|
{% endfor %}
|
|
<tr>
|
|
<td><a href="edit-user">{{config.add-user-label}}</a></td>
|
|
<td></td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
{% endblock %}
|