Files
notifications-admin/app/templates/views/service-settings/set-letter-contact-block.html
T

32 lines
992 B
HTML
Raw Normal View History

2017-03-02 15:56:28 +00:00
{% extends "withnav_template.html" %}
{% from "components/textbox.html" import textbox %}
2019-04-29 11:44:05 +01:00
{% from "components/page-header.html" import page_header %}
2017-03-02 15:56:28 +00:00
{% from "components/page-footer.html" import page_footer %}
2018-09-19 12:39:36 +01:00
{% from "components/form.html" import form_wrapper %}
2017-03-02 15:56:28 +00:00
{% block service_page_title %}
Letter contact details
2017-03-02 15:56:28 +00:00
{% endblock %}
{% block maincolumn_content %}
2019-04-29 11:44:05 +01:00
{{ page_header(
'Letter contact details',
back_link=None if request.args.get('from_template') else url_for('.service_settings', service_id=current_service.id)
) }}
2020-02-19 11:57:15 +00:00
<div class="govuk-grid-row">
{% call form_wrapper(class="govuk-grid-column-one-half") %}
2017-03-03 09:59:05 +00:00
{{ textbox(
form.letter_contact_block,
label='How should users contact your service?<br>This applies to all the letters you send.'|safe,
2017-03-06 11:25:55 +00:00
hint='10 lines maximum',
2017-03-03 09:59:05 +00:00
width='1-1',
2017-05-17 15:35:21 +01:00
rows=10,
2019-10-16 15:20:05 +01:00
highlight_placeholders=True
2017-03-03 09:59:05 +00:00
) }}
2019-04-29 11:44:05 +01:00
{{ page_footer('Save') }}
2018-09-19 12:39:36 +01:00
{% endcall %}
2017-03-03 09:59:05 +00:00
</div>
2017-03-02 15:56:28 +00:00
{% endblock %}