2017-06-15 16:20:07 +01:00
|
|
|
{% extends "withnav_template.html" %}
|
2019-04-29 11:44:05 +01:00
|
|
|
{% from "components/page-header.html" import page_header %}
|
2017-06-15 16:20:07 +01:00
|
|
|
{% 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 %}
|
2023-08-30 11:07:38 -04:00
|
|
|
{% from "components/components/back-link/macro.njk" import usaBackLink %}
|
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 %}
|
|
|
|
|
|
2021-07-30 18:23:12 +01:00
|
|
|
{% block backLink %}
|
2023-08-30 11:07:38 -04:00
|
|
|
{{ usaBackLink({ "href": url_for('main.api_integration', service_id=current_service.id) }) }}
|
2021-07-30 18:23:12 +01:00
|
|
|
{% endblock %}
|
|
|
|
|
|
2017-06-15 16:20:07 +01:00
|
|
|
{% block maincolumn_content %}
|
2021-07-30 18:23:12 +01:00
|
|
|
{{ page_header('Callbacks') }}
|
2024-07-26 10:38:00 -04:00
|
|
|
<div class="table-overflow-x-auto">
|
|
|
|
|
<div class="bottom-gutter-3-2 dashboard-table body-copy-table table-overflow-x-auto">
|
2024-03-05 09:51:25 -05:00
|
|
|
{% call mapping_table(
|
|
|
|
|
caption='General',
|
|
|
|
|
field_headings=['Label', 'Value', 'Action'],
|
|
|
|
|
field_headings_visible=False,
|
|
|
|
|
caption_visible=False
|
|
|
|
|
) %}
|
|
|
|
|
{% call row() %}
|
|
|
|
|
{{ text_field('Delivery receipts') }}
|
|
|
|
|
{{ optional_text_field(delivery_status_callback, truncate=true) }}
|
|
|
|
|
{{ edit_field('Change', url_for('.delivery_status_callback', service_id=current_service.id)) }}
|
|
|
|
|
{% endcall %}
|
2017-06-15 16:20:07 +01:00
|
|
|
|
2024-03-05 09:51:25 -05:00
|
|
|
{% call row() %}
|
|
|
|
|
{{ text_field('Received text messages') }}
|
|
|
|
|
{{ optional_text_field(received_text_messages_callback, truncate=true) }}
|
|
|
|
|
{{ edit_field('Change', url_for('.received_text_messages_callback', service_id=current_service.id)) }}
|
|
|
|
|
{% endcall %}
|
|
|
|
|
{% endcall %}
|
|
|
|
|
</div>
|
2017-12-08 10:52:38 +00:00
|
|
|
</div>
|
2017-11-03 16:10:26 +00:00
|
|
|
{% endblock %}
|