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

14 lines
500 B
HTML
Raw Normal View History

<div class="ajax-block-container">
2016-06-28 09:21:46 +01:00
<p class='heading-small bottom-gutter'>
{% if job.scheduled_for %}
{% if job.processing_started %}
Sent by {{ job.created_by.name }} on {{ job.processing_started|format_datetime_short }}
{% else %}
Uploaded by {{ job.created_by.name }} on {{ job.created_at|format_datetime_short }}
{% endif %}
{% else %}
Sent by {{ job.created_by.name }} on {{ job.created_at|format_datetime_short }}
{% endif %}
2016-06-28 09:21:46 +01:00
</p>
</div>