summaryrefslogtreecommitdiffstats
path: root/templates/admin_view_blacklist.html
blob: 4f203f631dd97b98dad35d02c4535e1e7ab2f35c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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 %}