Files
notifications-admin/app/templates/views/platform-admin/clear-cache.html
Leo Hemsted 89bfdf27ce add tests
2019-02-15 11:44:09 +00:00

22 lines
494 B
HTML

{% extends "views/platform-admin/_base_template.html" %}
{% from "components/form.html" import form_wrapper %}
{% from "components/radios.html" import radios %}
{% from "components/page-footer.html" import page_footer %}
{% block per_page_title %}
Clear Cache
{% endblock %}
{% block platform_admin_content %}
<h1 class="heading-large">
Clear Cache
</h1>
{% call form_wrapper() %}
{{ radios(form.model_type) }}
{{ page_footer('Clear') }}
{% endcall %}
{% endblock %}