mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-06-05 14:00:51 -04:00
It’s not a top level page (sits within the dashboard) so it should link back to its parent page.
24 lines
484 B
HTML
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 %}
|