{% extends "wagtailadmin/base.html" %} {% load i18n wagtailcache_tags %} {% block titletag %}{% trans "Cache" %}{% endblock %} {% block content %} {% trans "Cache" as title_str %} {% include "wagtailadmin/shared/header.html" with title=title_str icon=cache_icon %}
{% if 'WAGTAIL_CACHE'|get_wagtailcache_setting %}

{% trans "ENABLED" %}

{% trans "Cached pages are automatically refreshed every" %} {% cache_timeout %}.
{% trans "To modify this, change the TIMEOUT value of the cache backend in the project settings." %}

{% trans "Clear cache" %}

{% else %}

{% trans "DISABLED" %}

{% trans "To enable caching, set WAGTAIL_CACHE = True in the project settings." %}

{% endif %}
{% endblock %}