Files
notifications-admin/app/templates/views/dashboard/inbox.html
T

24 lines
484 B
HTML
Raw Normal View History

2017-07-07 15:51:59 +01:00
{% from "components/ajax-block.html" import ajax_block %}
{% from "components/page-header.html" import page_header %}
2017-05-22 17:02:03 +01:00
{% extends "withnav_template.html" %}
{% block service_page_title %}
2017-06-06 12:57:55 +01:00
Received text messages
2017-05-22 17:02:03 +01:00
{% endblock %}
{% block maincolumn_content %}
{{ page_header(
'Received text messages',
back_link=url_for('main.service_dashboard', service_id=current_service.id)
) }}
2017-07-07 15:51:59 +01:00
{{ ajax_block(
partials,
updates_url,
'messages',
) }}
2017-05-22 17:02:03 +01:00
{% endblock %}