summaryrefslogtreecommitdiffstats
path: root/templates/admin_index.html
blob: 6275bcc049b668c39e294f24552ce3d025174a8a (plain)
1
2
3
4
5
6
7
8
{%- extends 'base.html' %}
{%- set title = 'Admin-Interface' %}
{%- block content %}
<ul>
  <li><a href="{{ url_for('admin_create_account') }}">Account erstellen</a></li>
  <li><a href="{{ url_for('admin_view_blacklist') }}">Blacklist anzeigen</a></li>
</ul>
{%- endblock %}