{% extends "_base.html" %} {% block title %} {% if term != "" %} {{ term }} {% else %} Start a new Search {% endif %} {% endblock %} {% block searchValue %}{{ term }}{% endblock %} {% block content %} {% if match_groups.__len__() == 0 %} No Matches {% else %} {{ resultlen }} Matches in {{ match_groups.__len__() }} files {% for match_group in match_groups %}

{{ match_group['title'] }} - {{ match_group['filename'] }} ( Download )

{% for match in match_group['matches'] %}

Page {{ match['pagenumber'] }} (Download)

{% autoescape false %}
{{ match['excerpt'] }}
{% endautoescape %} {% endfor %} {% endfor %} {% endif %} {% endblock %}