aboutsummaryrefslogtreecommitdiff
path: root/devel/notmuch-web/templates/search.html
blob: 6719c3566c18f1a4b3b6ce214b7a5d067ebebfc0 (plain)
{% 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 %}