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

22 lines
354 B
HTML
Raw Normal View History

2017-07-07 15:51:59 +01:00
{% from "components/ajax-block.html" import ajax_block %}
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 %}
<h1 class="heading-large">
Received text messages
</h1>
2017-07-07 15:51:59 +01:00
{{ ajax_block(
partials,
updates_url,
'messages',
) }}
2017-05-22 17:02:03 +01:00
{% endblock %}