mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-09-09 00:23:12 -04:00
- it’s just taking up space - it’s too late to change it if it’s wrong - it’s not accurate if you’ve changed your service name since creating the job
38 lines
971 B
HTML
38 lines
971 B
HTML
{% extends "withnav_template.html" %}
|
||
{% from "components/banner.html" import banner %}
|
||
{% from "components/sms-message.html" import sms_message %}
|
||
{% from "components/email-message.html" import email_message %}
|
||
|
||
{% block page_title %}
|
||
{{ uploaded_file_name }} – GOV.UK Notify
|
||
{% endblock %}
|
||
|
||
{% block maincolumn_content %}
|
||
|
||
<h1 class="heading-large">
|
||
{{ uploaded_file_name }}
|
||
</h1>
|
||
|
||
{% if 'sms' == template.template_type %}
|
||
<div class="grid-row">
|
||
<div class="column-two-thirds">
|
||
{{ sms_message(
|
||
template.formatted_as_markup,
|
||
)}}
|
||
</div>
|
||
</div>
|
||
{% elif 'email' == template.template_type %}
|
||
{{ email_message(
|
||
template.formatted_subject_as_markup,
|
||
template.formatted_as_markup
|
||
)}}
|
||
{% endif %}
|
||
|
||
{% include 'partials/jobs/status.html' %}
|
||
|
||
{% include 'partials/jobs/count.html' %}
|
||
|
||
{% include 'partials/jobs/notifications.html' %}
|
||
|
||
{% endblock %}
|