mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-22 10:58:10 +01:00
15 lines
481 B
HTML
15 lines
481 B
HTML
{% extends "base.html" %}
|
|
{% block content %}
|
|
{% set headers = ['Subject', 'Date'] %}
|
|
{% set addr_headers = ['To', 'Cc', 'From'] %}
|
|
{% for header in headers: %}
|
|
<p><b>{{header}}:</b> {{m.header(header)|e}}</p>
|
|
{% endfor %}
|
|
{% for header in addr_headers: %}
|
|
<p><b>{{header}}:</b> {{mailto_addrs(m,header)|safe}}</p>
|
|
{% endfor %}
|
|
<hr>
|
|
{% for part in format_message(m,mid): %}{{ part|safe }}{% endfor %}
|
|
{% for b in thread_nav(m): %}{{b|safe}}{% endfor %}
|
|
<hr>
|
|
{% endblock content %}
|