]> git.cworth.org Git - notmuch/blob - devel/notmuch-web/templates/show.html
emacs: Add new option notmuch-search-hide-excluded
[notmuch] / devel / notmuch-web / templates / show.html
1 {% extends "base.html" %}
2 {% block content %}
3 {% set headers = ['Subject', 'Date'] %}
4 {% set addr_headers = ['To', 'Cc', 'From'] %}
5 {% for header in headers: %}
6 <p><b>{{header}}:</b> {{m.header(header)|e}}</p>
7 {% endfor %}
8 {% for header in addr_headers: %}
9 <p><b>{{header}}:</b> {{mailto_addrs(m,header)|safe}}</p>
10 {% endfor %}
11 <hr>
12 {% for part in format_message(m,mid): %}{{ part|safe }}{% endfor %}
13 {% for b in thread_nav(m): %}{{b|safe}}{% endfor %}
14 <hr>
15 {% endblock content %}