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

41 lines
1.2 KiB
Plaintext
Raw Permalink 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>
2024-09-28 02:16:58 +02:00
<div style="float: right; text-align: end;">
<a href="/inbox/{{ address }}/delete-all">
Wipe Inbox</a><br>
<a href="/logout">
Logout</a>
</div>
2023-11-01 11:48:19 +01:00
<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 %}