2017-07-07 15:34:06 +01:00
{% from "components/ajax-block.html" import ajax_block %}
2017-05-24 13:19:31 +01:00
{% extends "withnav_template.html" %}
{% block service_page_title %}
2017-07-07 15:34:06 +01:00
{{ user_number }}
2017-05-24 13:19:31 +01:00
{% endblock %}
{% block maincolumn_content %}
< div class = "dashboard" >
2017-06-06 15:40:33 +01:00
< div class = "bottom-gutter js-stick-at-top-when-scrolling" >
2017-05-24 13:19:31 +01: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" >
2017-10-15 12:59:36 +01:00
< a href = "{{ url_for('.conversation_reply', service_id=current_service.id, notification_id=notification_id) }}" > Send a text message to this phone number< / a >
< / p >
{% endif %}
2017-05-24 13:19:31 +01:00
< / div >
{% endblock %}