mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-07-16 19:30:13 -04:00
This mocks out a data structure for a job’s messages, and renders this data: - on the notification page, as a table, which links through to… - …the page for an indidivual message
23 lines
438 B
HTML
23 lines
438 B
HTML
{% extends "withnav_template.html" %}
|
|
{% from "components/sms-message.html" import sms_message %}
|
|
|
|
{% block page_title %}
|
|
GOV.UK Notify | Notifications activity
|
|
{% endblock %}
|
|
|
|
{% block maincolumn_content %}
|
|
|
|
|
|
<h1 class="heading-large">
|
|
Text message to {{ message.phone }}
|
|
</h1>
|
|
|
|
{{ sms_message(message.message) }}
|
|
|
|
<p>
|
|
<a href="{{ url_for('.showjob') }}">View other notifications in this job</a>
|
|
</p>
|
|
|
|
|
|
{% endblock %}
|