mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-09-09 03:23:12 -04:00
This commit adds content pages for the notifications pages, particularly the letter pages, which will make things clearer now that we will soon be allowing letters to be cancelled. The main changes are: * The confirmation banner for letters sent from a CSV file now states when printing will start. * We state the CSV file that notifications were sent from on the notifications page * The notification page for letters shows when printing starts (today, tomorrow, or that date that the letter was printed)
27 lines
832 B
HTML
27 lines
832 B
HTML
{% extends "withnav_template.html" %}
|
|
{% from "components/banner.html" import banner %}
|
|
{% from "components/ajax-block.html" import ajax_block %}
|
|
{% from "components/page-footer.html" import page_footer %}
|
|
|
|
{% block service_page_title %}
|
|
{{ uploaded_file_name }}
|
|
{% endblock %}
|
|
|
|
{% block maincolumn_content %}
|
|
|
|
<h1 class="heading-large">
|
|
{{ uploaded_file_name }}
|
|
</h1>
|
|
|
|
{% if just_sent %}
|
|
{{ banner('Your letter has been sent. Printing starts {} at 5.30pm.'.format(printing_day),
|
|
type='default',
|
|
with_tick=True) }}
|
|
{% else %}
|
|
{{ ajax_block(partials, updates_url, 'status', finished=finished) }}
|
|
{% endif %}
|
|
{{ ajax_block(partials, updates_url, 'counts', finished=finished) }}
|
|
{{ ajax_block(partials, updates_url, 'notifications', finished=finished) }}
|
|
|
|
{% endblock %}
|