2017-07-07 15:34:06 +01:00
{% from "components/ajax-block.html" import ajax_block %}
2023-08-30 11:07:38 -04:00
{% from "components/components/back-link/macro.njk" import usaBackLink %}
2017-07-07 15:34:06 +01:00
2017-05-24 13:19:31 +01:00
{% extends "withnav_template.html" %}
{% block service_page_title %}
2020-02-18 13:15:57 +00:00
Received text message
2017-05-24 13:19:31 +01:00
{% endblock %}
2021-07-30 14:42:54 +01:00
{% block backLink %}
2023-08-30 11:07:38 -04:00
{{ usaBackLink({ "href": url_for("main.inbox", service_id=current_service.id) }) }}
2021-07-30 14:42:54 +01:00
{% endblock %}
2017-05-24 13:19:31 +01:00
{% block maincolumn_content %}
< div class = "dashboard" >
2017-06-06 15:40:33 +01:00
< div class = "bottom-gutter js-stick-at-top-when-scrolling" >
2023-08-25 11:38:07 -04:00
< h1 class = "heading-large" >
2017-06-06 15:40:33 +01:00
{{ user_number }}
2017-05-24 13:19:31 +01:00
< / h1 >
< / div >
2017-07-07 15:34:06 +01:00
{{ ajax_block(
partials,
updates_url,
'messages',
) }}
2018-03-01 10:30:17 +00:00
{% if current_user.has_permissions('send_messages') %}
2017-10-24 12:00:51 +01:00
< p class = "sms-message-reply-link" >
2023-08-08 16:19:17 -04:00
< a class = "usa-link" href = "{{ url_for('.conversation_reply', service_id=current_service.id, notification_id=notification_id) }}" > Send a text message to this phone number< / a >
2017-10-15 12:59:36 +01:00
< / p >
{% endif %}
2017-05-24 13:19:31 +01:00
< / div >
{% endblock %}