{% extends "base.html" %} {% block title %}Search{% endblock %} {% block content %}

Search

{% if error %}

ERROR: {{ error | e}}

{% endif %}
Query:

{% if not results is none %} Total of {{ results | count }} results.
{% for result in results %}
  • {{ result.text | e}}
  • {% endfor %}
    {% endif %} {% endblock %}