{% extends "webadmin/base.html" %} {% block "title" %}{% trans "Cache Settings" %}{% endblock %} {% block "content" %}

{% trans "Cache Settings" %}

{% trans %} Here you can control the cache settings. {% endtrans %}

{% trans "Enable cache system" %}
{{ form.enabled.html }} {{ form.enabled.errors }}
{% trans "Cache templates in memory" %}
{{ form.template_memcache.html }} {{ form.template_memcache.errors }}
{% trans "Cache templates on harddisk" %}
{{ form.template_diskcache.html }} {{ form.template_diskcache.errors }}
{% trans "Cache static pages" %}
{{ form.static_cache.html }} {{ form.static_cache.errors }}
{% endblock %}