Files
notifications-admin/app/templates/views/api/callbacks/delivery-status-callback.html

43 lines
1.4 KiB
HTML
Raw Normal View History

2017-12-08 10:52:38 +00:00
{% extends "withnav_template.html" %}
{% from "components/textbox.html" import textbox %}
{% from "components/page-header.html" import page_header %}
2017-12-08 10:52:38 +00:00
{% from "components/page-footer.html" import page_footer %}
{% from "components/form.html" import form_wrapper %}
2017-12-08 10:52:38 +00:00
{% block service_page_title %}
Callbacks for delivery receipts
2017-12-08 10:52:38 +00:00
{% endblock %}
{% block maincolumn_content %}
<div class="govuk-grid-row">
<div class="govuk-grid-column-five-sixths">
{{ page_header(
'Callbacks for delivery receipts',
back_link=url_for(back_link, service_id=current_service.id)
) }}
<p class="govuk-body">
2017-12-08 10:52:38 +00:00
When you send an email or text message, we can tell you if Notify was able to deliver it.
Read the Callbacks section of our <a class="govuk-link govuk-link--no-visited-state" href="{{ url_for('main.documentation') }}">API documentation</a> for more information.
2017-12-08 10:52:38 +00:00
</p>
{% call form_wrapper() %}
{{ form.url(param_extensions={
"classes": "govuk-!-width-full",
"hint": {"text": "Must start with https://"}
}) }}
{{ form.bearer_token(param_extensions={
"classes": "govuk-!-width-full",
"hint": {"text": "At least 10 characters"},
"autocomplete": "new-password"
}) }}
{{ page_footer('Save') }}
{% endcall %}
2017-12-08 10:52:38 +00:00
</div>
</div>
{% endblock %}