Files
notifications-admin/app/templates/views/dashboard/inbox.html
Chris Hill-Scott 1dcbf7755a Add a back link to the received messages page
It’s not a top level page (sits within the dashboard) so it should link
back to its parent page.
2020-02-20 12:12:53 +00:00

24 lines
484 B
HTML

{% from "components/ajax-block.html" import ajax_block %}
{% from "components/page-header.html" import page_header %}
{% extends "withnav_template.html" %}
{% block service_page_title %}
Received text messages
{% endblock %}
{% block maincolumn_content %}
{{ page_header(
'Received text messages',
back_link=url_for('main.service_dashboard', service_id=current_service.id)
) }}
{{ ajax_block(
partials,
updates_url,
'messages',
) }}
{% endblock %}