mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-08-05 14:11:41 -04:00
33 lines
987 B
HTML
33 lines
987 B
HTML
{% extends "withnav_template.html" %}
|
|
{% from "components/radios.html" import radios, branding_radios %}
|
|
{% from "components/page-footer.html" import page_footer %}
|
|
|
|
{% block service_page_title %}
|
|
Set letter contact block
|
|
{% endblock %}
|
|
|
|
{% block maincolumn_content %}
|
|
|
|
<h1 class="heading-large">Set letter contact block</h1>
|
|
<div class="grid-row">
|
|
<div class="column-three-quarters">
|
|
<form method="post">
|
|
{{ radios(
|
|
form.sender,
|
|
option_hints=option_hints,
|
|
hide_legend=True
|
|
) }}
|
|
{{ page_footer(
|
|
'Continue',
|
|
back_link=url_for('.view_template', service_id=current_service.id, template_id=template_id),
|
|
back_link_text='Back to template'
|
|
) }}
|
|
{% if no_senders %}
|
|
<a href="{{ url_for('.service_add_letter_contact', service_id=current_service.id, from_template=template_id) }}">Add new sender</a>
|
|
{% endif %}
|
|
</form>
|
|
</div>
|
|
</div>
|
|
|
|
{% endblock %}
|