mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-07-15 19:01:04 -04:00
21 lines
590 B
HTML
21 lines
590 B
HTML
|
|
{% extends "views/platform-admin/_base_template.html" %}
|
||
|
|
{% from "components/form.html" import form_wrapper %}
|
||
|
|
|
||
|
|
{% block per_page_title %}
|
||
|
|
Monthly notification statuses for live services
|
||
|
|
{% endblock %}
|
||
|
|
|
||
|
|
{% block platform_admin_content %}
|
||
|
|
|
||
|
|
<h1 class="heading-large">
|
||
|
|
Monthly notification statuses for live services
|
||
|
|
</h1>
|
||
|
|
|
||
|
|
{% call form_wrapper() %}
|
||
|
|
{{ textbox(form.start_date, hint="Enter start date in format YYYY-MM-DD") }}
|
||
|
|
{{ textbox(form.end_date, hint="Enter end date in format YYYY-MM-DD") }}
|
||
|
|
{{ page_footer('Download report') }}
|
||
|
|
{% endcall %}
|
||
|
|
|
||
|
|
{% endblock %}
|