2016-03-02 17:36:20 +00:00
|
|
|
|
{% extends "withnav_template.html" %}
|
|
|
|
|
|
{% from "components/banner.html" import banner %}
|
2016-06-28 09:21:46 +01:00
|
|
|
|
{% from "components/ajax-block.html" import ajax_block %}
|
2017-03-22 10:55:15 +00:00
|
|
|
|
{% from "components/page-footer.html" import page_footer %}
|
2016-03-02 17:36:20 +00:00
|
|
|
|
|
2017-02-13 10:45:15 +00:00
|
|
|
|
{% block service_page_title %}
|
|
|
|
|
|
{{ uploaded_file_name }}
|
2016-03-02 17:36:20 +00:00
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
|
|
|
|
{% block maincolumn_content %}
|
|
|
|
|
|
|
|
|
|
|
|
<h1 class="heading-large">
|
|
|
|
|
|
{{ uploaded_file_name }}
|
|
|
|
|
|
</h1>
|
|
|
|
|
|
|
2017-07-13 11:28:37 +01:00
|
|
|
|
{% if just_sent %}
|
|
|
|
|
|
{{ banner('We’ve started printing your letters', type='default', with_tick=True) }}
|
|
|
|
|
|
{% else %}
|
|
|
|
|
|
{{ ajax_block(partials, updates_url, 'status', finished=finished) }}
|
|
|
|
|
|
{% endif %}
|
2016-06-28 11:23:43 +01:00
|
|
|
|
{{ ajax_block(partials, updates_url, 'counts', finished=finished) }}
|
|
|
|
|
|
{{ ajax_block(partials, updates_url, 'notifications', finished=finished) }}
|
2016-03-02 17:36:20 +00:00
|
|
|
|
|
|
|
|
|
|
{% endblock %}
|