mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-07-26 15:48:28 -04:00
21 lines
489 B
HTML
21 lines
489 B
HTML
<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="status"
|
|
aria-live="polite"
|
|
{% endif %}
|
|
>
|
|
|
|
{% if finished_at %}
|
|
<p class='heading-small'>
|
|
Finished {{ finished_at|format_datetime }}
|
|
</p>
|
|
{% else %}
|
|
<p class='heading-small'>
|
|
Started {{ uploaded_at|format_datetime }}
|
|
</p>
|
|
{% endif %}
|
|
Uploaded by {{ created_by }}
|
|
</div>
|