mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-08-16 20:49:00 -04:00
30 lines
626 B
HTML
30 lines
626 B
HTML
{% extends "withnav_template.html" %}
|
|
{% from "components/sms-message.html" import sms_message, message_history %}
|
|
|
|
{% block page_title %}
|
|
GOV.UK Notify | Notifications activity
|
|
{% endblock %}
|
|
|
|
{% block maincolumn_content %}
|
|
|
|
|
|
<h1 class="heading-large">
|
|
Text message
|
|
</h1>
|
|
|
|
<div class="grid-row">
|
|
<div class="column-two-thirds">
|
|
{{ sms_message(message.message, message.phone) }}
|
|
</div>
|
|
<div class="column-one-third">
|
|
{{ message_history("Message history", history) }}
|
|
</div>
|
|
</div>
|
|
|
|
<p>
|
|
<a href="{{ url_for('.showjob') }}">View other notifications in this job</a>
|
|
</p>
|
|
|
|
|
|
{% endblock %}
|