mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-03-03 17:01:26 -05:00
* Updated header and footer * Updated fonts * Moved files around and updated gulpfile to correct the build process when it goes to production * Adjusted grid templating * Added images to assets * Update app/templates/components/uk_components/footer/template.njk Co-authored-by: Steven Reilly <stvnrlly@users.noreply.github.com>
21 lines
658 B
HTML
21 lines
658 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="font-body-2xl margin-bottom-3">
|
|
Monthly notification statuses for live services
|
|
</h1>
|
|
|
|
{% call form_wrapper() %}
|
|
{{ form.start_date(param_extensions={"hint": {"text": "Enter start date in format YYYY-MM-DD"}}) }}
|
|
{{ form.end_date(param_extensions={"hint": {"text": "Enter end date in format YYYY-MM-DD"}}) }}
|
|
{{ page_footer('Download report (CSV)') }}
|
|
{% endcall %}
|
|
|
|
{% endblock %}
|