mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-09-05 19:38:24 -04:00
Only the test channel has the option to isolate messages to one network. This commits makes the choices less confusing by only showing the network choice to those who have selected the test channel.
33 lines
888 B
HTML
33 lines
888 B
HTML
{% extends "withnav_template.html" %}
|
|
{% from "components/page-footer.html" import page_footer %}
|
|
{% from "components/form.html" import form_wrapper %}
|
|
{% from "components/back-link/macro.njk" import govukBackLink %}
|
|
|
|
{% block service_page_title %}
|
|
Emergency alerts settings
|
|
{% endblock %}
|
|
|
|
{% block maincolumn_content %}
|
|
|
|
<div class="govuk-grid-row">
|
|
<div class="govuk-grid-column-five-sixths">
|
|
{{ govukBackLink({
|
|
"text": "Back",
|
|
"href": url_for('.service_settings', service_id=current_service.id)
|
|
}) }}
|
|
{% call form_wrapper() %}
|
|
{{ form.channel(param_extensions={
|
|
'fieldset': {
|
|
'legend': {
|
|
'isPageHeading': True,
|
|
'classes': 'govuk-fieldset__legend--l'
|
|
}
|
|
}
|
|
}) }}
|
|
{{ page_footer('Continue') }}
|
|
{% endcall %}
|
|
</div>
|
|
</div>
|
|
|
|
{% endblock %}
|