mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-09-05 18:18:25 -04:00
44 lines
1.2 KiB
HTML
44 lines
1.2 KiB
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,
|
||
from_address='{}@notifications.service.gov.uk'.format(current_service.email_from),
|
||
from_name=current_service.name
|
||
)}}
|
||
{% endif %}
|
||
|
||
{% include 'partials/jobs/status.html' %}
|
||
|
||
{% include 'partials/jobs/count.html' %}
|
||
|
||
{% include 'partials/jobs/notifications.html' %}
|
||
|
||
<p class="table-show-more-link">
|
||
<a href="{{ request.url }}?&download=csv" download>Download as a CSV file</a>
|
||
</p>
|
||
|
||
{% endblock %}
|