mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-02-05 10:53:28 -05:00
Having the full history of the message is more information than is necessary. We should only show what stage the message is at, and the time that it reached that stage. We can do research later on to find out if users understand or care about the different stages.
30 lines
626 B
HTML
30 lines
626 B
HTML
{% extends "withnav_template.html" %}
|
|
{% from "components/sms-message.html" import sms_message, message_status %}
|
|
|
|
{% 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_status(message.status, delivered_at) }}
|
|
</div>
|
|
</div>
|
|
|
|
<p>
|
|
<a href="{{ url_for('.showjob') }}">View other notifications in this job</a>
|
|
</p>
|
|
|
|
|
|
{% endblock %}
|