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

34 lines
976 B
HTML
Raw Normal View History

2017-03-02 15:56:28 +00:00
{% extends "withnav_template.html" %}
{% from "components/textbox.html" import textbox %}
{% 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 %}
<h1 class="heading-large">
Letter contact details
</h1>
2017-03-03 09:59:05 +00:00
<div class="grid-row">
2018-09-19 12:39:36 +01:00
{% call form_wrapper(class="column-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,
highlight_tags=True
2017-03-03 09:59:05 +00:00
) }}
{{ page_footer(
'Save',
back_link=None if request.args.get('from_template') else url_for('.service_settings', service_id=current_service.id),
2017-03-03 09:59:05 +00:00
back_link_text='Back to settings'
) }}
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 %}