summaryrefslogtreecommitdiffstats
path: root/templates/admin_index.html
diff options
context:
space:
mode:
authorMarian Sigler <m@qjym.de>2012-10-01 01:39:17 +0200
committerMarian Sigler <m@qjym.de>2012-10-01 01:39:17 +0200
commit1cf89afc3c3d7fc9735597c768501ede19206a69 (patch)
tree23b8e08adfe8d0ed4e62936d12e12121dbffef5f /templates/admin_index.html
parente712284e6dacc85677da480ff0be03c524d85d9a (diff)
downloadweb-1cf89afc3c3d7fc9735597c768501ede19206a69.tar.gz
web-1cf89afc3c3d7fc9735597c768501ede19206a69.tar.bz2
web-1cf89afc3c3d7fc9735597c768501ede19206a69.zip
Add admin panel: Allow creation of usernames that are in the blacklist.
Diffstat (limited to 'templates/admin_index.html')
-rw-r--r--templates/admin_index.html8
1 files changed, 8 insertions, 0 deletions
diff --git a/templates/admin_index.html b/templates/admin_index.html
new file mode 100644
index 0000000..6275bcc
--- /dev/null
+++ b/templates/admin_index.html
@@ -0,0 +1,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 %}