2016-03-02 17:36:20 +00:00
|
|
|
{% from "components/big-number.html" import big_number %}
|
2016-04-27 09:28:42 +01:00
|
|
|
|
|
|
|
|
<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"
|
2016-04-27 09:43:27 +01:00
|
|
|
aria-live="polite"
|
2016-04-27 09:28:42 +01:00
|
|
|
{% 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>
|