Files
notifications-admin/app/templates/views/jobs/job.html
T

57 lines
1.4 KiB
HTML
Raw Normal View History

2016-03-02 17:36:20 +00:00
{% extends "withnav_template.html" %}
{% from "components/banner.html" import banner %}
2017-03-22 10:55:15 +00:00
{% from "components/page-footer.html" import page_footer %}
2020-03-03 14:27:13 +00:00
{% from "components/page-header.html" import page_header %}
2023-08-30 11:07:38 -04:00
{% from "components/components/back-link/macro.njk" import usaBackLink %}
2016-03-02 17:36:20 +00:00
2017-02-13 10:45:15 +00:00
{% block service_page_title %}
2020-01-08 12:23:09 +00:00
{{ job.original_file_name }}
2016-03-02 17:36:20 +00:00
{% endblock %}
{% block maincolumn_content %}
{{ page_header(job.original_file_name) }}
2016-03-02 17:36:20 +00:00
2023-12-18 16:09:54 -05:00
{% if not job.processing_finished %}
<div
data-module="update-content"
data-resource="{{ updates_url }}"
data-key="status"
data-form=""
>
{% endif %}
{{ partials['status']|safe }}
{% if not job.processing_finished %}
</div>
{% endif %}
{% if not finished %}
<div
data-module="update-content"
data-resource="{{ updates_url }}"
data-key="counts"
data-form=""
>
{% endif %}
{{ partials['counts']|safe }}
{% if not finished %}
</div>
{% endif %}
{% if not job.processing_finished %}
<div
data-module="update-content"
data-resource="{{ updates_url }}"
data-key="notifications"
data-form=""
>
{% endif %}
{{ partials['notifications']|safe }}
{% if not job.processing_finished %}
</div>
{% endif %}
2016-03-02 17:36:20 +00:00
<div> </div>
2019-06-18 15:52:29 +01:00
2016-03-02 17:36:20 +00:00
{% endblock %}