48hr.email/infrastructure/web/views/inbox.twig

36 lines
1.1 KiB
Plaintext
Raw Normal View History

2023-11-01 11:48:19 +01:00
{% extends 'layout.twig' %}
{% block body %}
<script>
document.addEventListener("DOMContentLoaded", function () {
enableNewMessageNotifications('{{ address }}', true)
});
</script>
<div style="float: right"><a href="/login"> Logout</a></div>
<h1>{{ address }}</h1>
{% for mail in mailSummaries %}
<a href="{{ mail.to[0] }}/{{ mail.uid }}" class="no-link-color">
<blockquote class="email">
<h6 class="list-group-item-heading">
{{ mail.from[0].name }}
<span class="text-muted">{{ mail.from[0].address }}</span>
<small class="float-right">{{ mail.date |date }}</small>
</h6>
<p class="list-group-item-text text-truncate" style="width: 75%">
{{ mail.subject }} </p>
</div>
</blockquote>
</a>
{% endfor %}
{% if not mailSummaries %}
<blockquote>
There are no mails yet.
</blockquote>
{% endif %}
{% endblock %}