Files
notifications-admin/app/templates/views/notification.html
Chris Hill-Scott aa0663cad8 Add messages to the current job’s history
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
2016-01-05 13:31:53 +00:00

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 %}