notmuch/devel/notmuch-web/templates/search.html
David Bremner 126347b694 Import notmuch_0.38.2.orig.tar.xz
[dgit import orig notmuch_0.38.2.orig.tar.xz]
2023-12-01 07:51:09 -04:00

10 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 %}