{% extends "base.html" %} {% block content %}

Cache

Search the cache

{% if cache|length > 0 %} {% if question is not none and question|length >0 and cache|length != 0%}

Results for {{question}}

{% endif %}
{% for entry in cache %}

{{entry['prompt']}}

{% endfor %}
{% if pagination is not none %}
{{ pagination.links }}
{% endif %} {% endif %} {% if question is not none and cache|length == 0%}

The question {{question}} produced no results

{% endif %}
{% endblock %}