mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-05-28 01:50:12 -04:00
Just having them in the boxes with the 2px black border made them look too much like textboxes.
42 lines
974 B
HTML
42 lines
974 B
HTML
{% from "components/button/macro.njk" import govukButton %}
|
|
{% from "components/form.html" import form_wrapper %}
|
|
{% from "components/page-header.html" import page_header %}
|
|
{% from "components/page-footer.html" import sticky_page_footer %}
|
|
|
|
{% extends "withnav_template.html" %}
|
|
|
|
{% block service_page_title %}
|
|
Preview message
|
|
{% endblock %}
|
|
|
|
{% block maincolumn_content %}
|
|
|
|
{{ page_header("Preview", back_link=url_for('.preview_broadcast_areas', service_id=current_service.id)) }}
|
|
|
|
{% for area in selected %}
|
|
{% if loop.first %}
|
|
<ul class="area-list">
|
|
{% endif %}
|
|
<li class="area-list-item area-list-item--unremoveable">
|
|
{{ area.name }}
|
|
</li>
|
|
{% if loop.last %}
|
|
</ul>
|
|
{% endif %}
|
|
{% endfor %}
|
|
|
|
{% if selected %}
|
|
|
|
<p class="govuk-body">
|
|
{{ template|string }}
|
|
</p>
|
|
|
|
{% call form_wrapper() %}
|
|
{{ sticky_page_footer('Start broadcast') }}
|
|
{% endcall %}
|
|
|
|
{% endif %}
|
|
|
|
|
|
{% endblock %}
|