{% extends "base_template.html" %} {% block title %}{{ _('Contact') }}{% endblock %} {% block content %}
{{ _('Messages submitted through the contact form.') }}
| {{ _('From') }} | {{ _('Subject') }} | {{ _('Message') }} | {{ _('Date') }} | {{ _('Status') }} | {{ _('Actions') }} |
|---|---|---|---|---|---|
|
{{ m.name }}
{{ m.email }} |
{{ m.subject or '—' }} | {{ m.message|truncate(100, true) }} | {{ m.created_at.strftime('%Y-%m-%d %H:%M') }} | {% if m.read %} {{ _('read') }} {% else %} {{ _('unread') }} {% endif %} | {% if not m.read %} {% endif %} |
| {{ _('No messages yet.') }} | |||||