Files
notifications-admin/app/templates/views/platform-admin/clear-cache.html

22 lines
495 B
HTML
Raw Normal View History

{% 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-medium">
Clear cache
</h1>
{% call form_wrapper() %}
{{ radios(form.model_type) }}
{{ page_footer('Clear') }}
{% endcall %}
{% endblock %}