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

47 lines
1.2 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 %}
2024-02-22 11:59:12 -08:00
{{ "Message status" }}
2016-03-02 17:36:20 +00:00
{% endblock %}
{% block maincolumn_content %}
2024-02-22 11:59:12 -08:00
{{ page_header("Message status") }}
{{ partials['status']|safe }}
2023-12-18 16:09:54 -05:00
{% 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 %}
2024-01-15 14:17:18 -08:00
<p class="notification-status">
Messages will remain in pending state until carrier status is received, typically 5 minutes.
</p>
2023-12-18 16:09:54 -05:00
{% 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 %}