summaryrefslogtreecommitdiffstats
path: root/templates/admin_view_blacklist.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_view_blacklist.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_view_blacklist.html')
-rw-r--r--templates/admin_view_blacklist.html19
1 files changed, 19 insertions, 0 deletions
diff --git a/templates/admin_view_blacklist.html b/templates/admin_view_blacklist.html
new file mode 100644
index 0000000..4f203f6
--- /dev/null
+++ b/templates/admin_view_blacklist.html
@@ -0,0 +1,19 @@
+{%- extends 'base.html' %}
+{%- set title = 'Blacklist anzeigen' %}
+{%- block content %}
+<nav>
+ <ul>
+ {%- if start %}
+ <li><a href="{{ url_for('admin_view_blacklist') }}">Alle</a></li>
+ {%- endif %}
+ {%- for l in next_letters %}
+ <li><a href="{{ url_for('admin_view_blacklist', start=start+l) }}">{{ l }}</a></li>
+ {%- endfor %}
+ </ul>
+</nav>
+<ul>
+ {%- for e in entries %}
+ <li>{{ e }}</li>
+ {%- endfor %}
+</ul>
+{%- endblock %}