19 lines
313 B
HTML
19 lines
313 B
HTML
<!DOCTYPE html>
|
|
<head>
|
|
<title>Autoreply Editor</title>
|
|
</head>
|
|
|
|
<body>
|
|
<h1>Autoreply Editor</h1>
|
|
|
|
<h2>Configurable users</h2>
|
|
|
|
<ul>
|
|
{% for user in users %}
|
|
<li><a href="/user/{{ user[1].split('@')[0] }}">{{ user[0] }} {{"<"}}{{ user[1] }}{{">"}}</a></li>
|
|
{% endfor %}
|
|
</ul>
|
|
|
|
</body>
|
|
</html>
|