Files
notifications-admin/app/templates/views/platform-admin/notifications_by_service.html
Tom Byers c715681f5c Convert DateFields to GovukDateFields
Changes those fields in the following forms:
- DateFilterForm
- RequiredDateFilterForm

Includes changes to templates that use this form
and associated tests.
2020-08-12 10:34:51 +01:00

21 lines
636 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() %}
{{ 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') }}
{% endcall %}
{% endblock %}