{% extends "admin/layout.html" %} {% block content %}

Cache {{ driver }}

{{ count }} entr{{ 'y' if count == 1 else 'ies' }} in the cache store.

{% if count == 0 %}

Cache is empty.

{% else %}
{% for entry in entries %} {% endfor %}
Key TTL Value Delete
{{ entry.key }} {% if entry.forever %} ∞ forever {% elif entry.ttl is not none %} {{ entry.ttl }}s {% else %} {% endif %}
{{ entry.value }}
{% endif %} {% endblock %}