mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-07-27 03:09:11 -04:00
26 lines
555 B
HTML
26 lines
555 B
HTML
{% from "components/big-number.html" import big_number %}
|
|
|
|
<div
|
|
{% if not finished_at %}
|
|
data-module="update-content"
|
|
data-resource="{{url_for(".view_job_updates", service_id=current_service.id, job_id=job_id)}}"
|
|
data-key="counts"
|
|
aria-live="polite"
|
|
{% endif %}
|
|
>
|
|
|
|
<ul class="grid-row job-totals">
|
|
<li class="column-one-quarter">
|
|
{{ big_number(
|
|
counts.queued, 'queued'
|
|
)}}
|
|
</li>
|
|
<li class="column-one-quarter">
|
|
{{ big_number(
|
|
counts.sent, 'processed'
|
|
)}}
|
|
</li>
|
|
</ul>
|
|
|
|
</div>
|