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

21 lines
489 B
HTML
Raw Normal View History

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="status"
aria-live="polite"
2016-04-27 09:28:42 +01:00
{% 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 }}
2016-04-27 09:28:42 +01:00
</div>