Files
notifications-admin/app/templates/views/dashboard/inbox.html
Chris Hill-Scott 5f6351762a Make inbox page update using AJAX
Fairly self-explanatory. Uses the same pattern of breaking things up
into functions as the jobs page.
2017-07-12 17:10:27 +01:00

22 lines
354 B
HTML

{% from "components/ajax-block.html" import ajax_block %}
{% extends "withnav_template.html" %}
{% block service_page_title %}
Received text messages
{% endblock %}
{% block maincolumn_content %}
<h1 class="heading-large">
Received text messages
</h1>
{{ ajax_block(
partials,
updates_url,
'messages',
) }}
{% endblock %}