mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-06-09 07:51:21 -04:00
Fairly self-explanatory. Uses the same pattern of breaking things up into functions as the jobs page.
22 lines
354 B
HTML
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 %}
|