]> git.cworth.org Git - notmuch/blob - devel/notmuch-web/templates/search.html
devel/notmuch-web: single user web front end using python-cffi
[notmuch] / devel / notmuch-web / templates / search.html
1 {% extends "base.html" %}
2 <h1>{{ terms|e }}</h1>
3 {% block content %}
4 {% for t in ts %}
5   <h2>{{ t.subject|e }}</h2>
6   <p><i>{{ t.authors|e }}</i></p>
7   <p><b>{{ format_time_range(t.first,t.last)|e }}</b></p>
8   {{ show_msgs(t.toplevel())|safe }}
9 {% endfor %}
10 {% endblock content %}