{% extends "_base.html" %} {% block title %} {% if term != "" %} {{ term }} {% else %} Start a new Search {% endif %} {% endblock %} {% block searchValue %}{{ term }}{% endblock %} {% block javascript %} {% endblock %} {% block content %} {% if matches %} Matched {{ matches.__len__() }} Book{% if matches.__len__() > 1 %}s{% endif %} {% for docnum, matches in matches.items() %}

book: {{ docnum }}

filename, creationtime, indexed-time, +any pdf metadata
{% for match in matches %}

Match at page {{ match[2] }}

{% endfor %}

{% endfor %} {% endif %} {% endblock %}