mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-07-17 13:09:49 -04:00
30 lines
746 B
HTML
30 lines
746 B
HTML
{% from "components/back-link/macro.njk" import govukBackLink %}
|
|
{% from "components/page-footer.html" import page_footer %}
|
|
{% from "components/form.html" import form_wrapper %}
|
|
|
|
{% extends "withnav_template.html" %}
|
|
|
|
{% block service_page_title %}
|
|
New alert
|
|
{% endblock %}
|
|
|
|
{% block maincolumn_content %}
|
|
|
|
{{ govukBackLink({ "href": url_for('.broadcast_dashboard', service_id=current_service.id) }) }}
|
|
|
|
{% call form_wrapper(class="govuk-!-margin-top-3") %}
|
|
{{ form.content(
|
|
param_extensions={
|
|
'fieldset': {
|
|
'legend': {
|
|
'isPageHeading': True,
|
|
'classes': 'govuk-fieldset__legend--l'
|
|
}
|
|
}
|
|
}
|
|
) }}
|
|
{{ page_footer('Continue') }}
|
|
{% endcall %}
|
|
|
|
{% endblock %}
|