mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-23 11:28:13 +01:00
11 lines
281 B
HTML
11 lines
281 B
HTML
|
{% extends "base.html" %}
|
||
|
<h1>{{ terms|e }}</h1>
|
||
|
{% block content %}
|
||
|
{% for t in ts %}
|
||
|
<h2>{{ t.subject|e }}</h2>
|
||
|
<p><i>{{ t.authors|e }}</i></p>
|
||
|
<p><b>{{ format_time_range(t.first,t.last)|e }}</b></p>
|
||
|
{{ show_msgs(t.toplevel())|safe }}
|
||
|
{% endfor %}
|
||
|
{% endblock content %}
|