Files
notifications-admin/app/templates/partials/jobs/count.html
T

17 lines
407 B
HTML
Raw Normal View History

2016-06-08 16:34:26 +01:00
{% from "components/pill.html" import pill %}
2016-04-27 09:28:42 +01:00
<div
2016-05-25 13:36:35 +01:00
{% if not finished %}
data-module="update-content"
2016-06-08 16:34:26 +01:00
data-resource="{{url_for(".view_job_updates", service_id=current_service.id, job_id=job.id, status=status, help=request.args.get('help', 0))}}"
data-key="counts"
aria-live="polite"
2016-04-27 09:28:42 +01:00
{% endif %}
>
2016-06-08 16:34:26 +01:00
<div class="bottom-gutter">
{{ pill('Status', counts, status) }}
</div>
2016-04-27 09:28:42 +01:00
</div>