Files
notifications-admin/app/templates/views/service-settings/email-reply-to/add.html
T

35 lines
990 B
HTML
Raw Normal View History

{% extends "withnav_template.html" %}
{% from "components/textbox.html" import textbox %}
{% from "components/checkbox.html" import checkbox %}
2019-04-29 11:44:05 +01:00
{% from "components/page-header.html" import page_header %}
{% from "components/page-footer.html" import page_footer %}
2018-09-19 12:39:36 +01:00
{% from "components/form.html" import form_wrapper %}
{% block service_page_title %}
2019-07-09 16:37:22 +01:00
Add reply-to email address
{% endblock %}
{% block maincolumn_content %}
2019-04-29 11:44:05 +01:00
{{ page_header(
2019-07-09 16:37:22 +01:00
'Add reply-to email address',
2019-04-29 11:44:05 +01:00
back_link=url_for('main.service_email_reply_to', service_id=current_service.id)
) }}
2018-09-19 12:39:36 +01:00
{% call form_wrapper() %}
{{ textbox(
form.email_address,
width='1-1',
hint='This should be a shared inbox managed by your team, not your own email address',
safe_error_message=True
) }}
{% if not first_email_address %}
<div class="form-group">
{{ checkbox(form.is_default) }}
</div>
{% endif %}
2019-04-29 11:44:05 +01:00
{{ page_footer('Add') }}
2018-09-19 12:39:36 +01:00
{% endcall %}
2017-09-26 15:26:38 +01:00
{% endblock %}