{% extends 'squid/cache/refresh/tabs.html' %} {% block box_content %} {% block member_heading%}{%endblock%} {% if form.non_field_errors %}
{% for error in form.non_field_errors %} {{ error|escape }} {% endfor %}
{% endif %}
{% csrf_token %}
{{form.regex}} {% if form.regex.errors %} {{form.regex.errors|striptags}} {% else %} Specify here the regular expression for URL refresh pattern. {%endif%}
{{form.min_time}}
{% if form.min_time.errors %} {{form.min_time.errors|striptags}} {% else %} Specify the min_time time (in minutes) an object without an explicit expiry time should be considered fresh. Default value is 0. {%endif%}
{{form.percent}}
{% if form.percent.errors %} {{form.percent.errors|striptags}} {% else %} Specify the percentage of the objects age (time since last modification age) an object without explicit expiry time will be considered fresh. Default value is 20. {%endif%}
{{form.max_time}}
{% if form.max_time.errors %} {{form.max_time.errors|striptags}} {% else %} Specify the maximum upper limit on how long objects without an explicit expiry time will be considered fresh. Default value is 0. {%endif%}
 
{{form.max_stale_nn}}
{% if form.max_stale_nn.errors %} {{form.max_stale_nn.errors|striptags}} {% else %} Specify the max stale value. Default is 0. {%endif%}
{% block cancel_button%} {%endblock%}
{% endblock %}