mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-02-09 21:04:14 -05:00
21 lines
436 B
HTML
21 lines
436 B
HTML
{% 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 %}
|
|
Clear cache
|
|
{% endblock %}
|
|
|
|
{% block platform_admin_content %}
|
|
|
|
<h1 class="font-body-2xl">
|
|
Clear cache
|
|
</h1>
|
|
|
|
{% call form_wrapper() %}
|
|
{{ form.model_type }}
|
|
{{ page_footer('Clear') }}
|
|
{% endcall %}
|
|
|
|
{% endblock %}
|