2019-02-15 10:27:38 +00:00
|
|
|
{% extends "views/platform-admin/_base_template.html" %}
|
|
|
|
|
{% from "components/form.html" import form_wrapper %}
|
|
|
|
|
{% from "components/page-footer.html" import page_footer %}
|
|
|
|
|
|
|
|
|
|
{% block per_page_title %}
|
2020-04-23 11:08:43 +01:00
|
|
|
Clear cache
|
2019-02-15 10:27:38 +00:00
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
|
|
{% block platform_admin_content %}
|
|
|
|
|
|
2023-08-16 12:49:36 -04:00
|
|
|
<h1 class="font-body-2xl">
|
2020-04-23 11:08:43 +01:00
|
|
|
Clear cache
|
2019-02-15 10:27:38 +00:00
|
|
|
</h1>
|
|
|
|
|
|
|
|
|
|
{% call form_wrapper() %}
|
2020-11-12 13:38:20 +00:00
|
|
|
{{ form.model_type }}
|
2019-02-15 10:27:38 +00:00
|
|
|
{{ page_footer('Clear') }}
|
|
|
|
|
{% endcall %}
|
|
|
|
|
|
|
|
|
|
{% endblock %}
|