2017-06-15 16:20:07 +01:00
|
|
|
{% extends "withnav_template.html" %}
|
|
|
|
|
{% from "components/textbox.html" import textbox %}
|
|
|
|
|
{% from "components/page-footer.html" import page_footer %}
|
2018-01-25 15:29:05 +00:00
|
|
|
{% from "components/table.html" import mapping_table, row, text_field, edit_field, optional_text_field with context %}
|
2017-12-08 10:52:38 +00:00
|
|
|
|
2017-06-15 16:20:07 +01:00
|
|
|
|
|
|
|
|
{% block service_page_title %}
|
2017-12-04 15:07:11 +00:00
|
|
|
Callbacks
|
2017-06-15 16:20:07 +01:00
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
|
|
{% block maincolumn_content %}
|
2017-12-08 10:52:38 +00:00
|
|
|
<h1 class="heading-large">Callbacks</h1>
|
|
|
|
|
<div class="bottom-gutter-3-2 dashboard-table body-copy-table">
|
|
|
|
|
{% call mapping_table(
|
|
|
|
|
caption='General',
|
|
|
|
|
field_headings=['Label', 'Value', 'Action'],
|
|
|
|
|
field_headings_visible=False,
|
|
|
|
|
caption_visible=False
|
|
|
|
|
) %}
|
|
|
|
|
{% call row() %}
|
2017-12-13 10:35:37 +00:00
|
|
|
{{ text_field('Callbacks for delivery receipts') }}
|
2018-06-07 10:55:48 +01:00
|
|
|
{{ optional_text_field(delivery_status_callback, truncate=true) }}
|
2017-12-08 10:52:38 +00:00
|
|
|
{{ edit_field('Change', url_for('.delivery_status_callback', service_id=current_service.id)) }}
|
|
|
|
|
{% endcall %}
|
2017-06-15 16:20:07 +01:00
|
|
|
|
2017-12-08 10:52:38 +00:00
|
|
|
{% call row() %}
|
2017-12-13 10:35:37 +00:00
|
|
|
{{ text_field('Callbacks for received text messages') }}
|
2018-06-07 10:55:48 +01:00
|
|
|
{{ optional_text_field(received_text_messages_callback, truncate=true) }}
|
2018-01-25 15:29:05 +00:00
|
|
|
{{ edit_field('Change', url_for('.received_text_messages_callback', service_id=current_service.id)) }}
|
2017-12-08 10:52:38 +00:00
|
|
|
{% endcall %}
|
|
|
|
|
{% endcall %}
|
|
|
|
|
</div>
|
2018-01-11 17:22:27 +00:00
|
|
|
{{ page_footer(
|
|
|
|
|
secondary_link=url_for('.api_integration', service_id=current_service.id),
|
|
|
|
|
secondary_link_text='Back to API integration'
|
|
|
|
|
) }}
|
2017-11-03 16:10:26 +00:00
|
|
|
{% endblock %}
|