mail-accounts/templates/home.html
2023-08-28 22:10:08 +02:00

16 lines
415 B
HTML

{% extends "base.html" %}
{% block title %}
Mail management
{% endblock title %}
{% block head %}
{{ super() }}
{% endblock head %}
{% block content %}
<div class="container">
<h1 class="title is-1">Mail management</h1>
<h2 class="title is-2">Mails</h2>
<ul>
{% for mail in mails %}<li>{{ mail.mail }}</li>{% endfor %}
</ul>
</div>
{% endblock content %}