Files
autoreply-editor/autoreply_editor/templates/index.html

19 lines
313 B
HTML
Raw Normal View History

2021-05-18 19:32:59 +02:00
<!DOCTYPE html>
2021-05-19 10:23:47 +02:00
<head>
<title>Autoreply Editor</title>
</head>
2021-05-18 19:32:59 +02:00
2021-05-19 10:23:47 +02:00
<body>
<h1>Autoreply Editor</h1>
2021-12-23 13:28:19 +01:00
<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>
2021-12-19 22:00:41 +01:00
2021-05-19 10:23:47 +02:00
</body>
2021-05-18 19:32:59 +02:00
</html>