mailpot/web/src/templates/index.html

12 lines
309 B
HTML

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