mailpot/web/src/templates/index.html

12 lines
308 B
HTML

{% include "header.html" %}
<div class="entry">
<div class="body">
<ul>
{% for l in lists %}
<li><a href="{{ root_url_prefix|safe }}{{ list_path(l.list.pk) }}">{{ l.list.name }}</a></li>
{% endfor %}
</ul>
</div>
</div>
{% include "footer.html" %}