]> git.notmuchmail.org Git - notmuch/blob - devel/notmuch-web/templates/search.html
emacs: Add new option notmuch-search-hide-excluded
[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 %}