|
{{ job.id[:8] if job.id else 'Manually entered number' }}
|
{{ job.template_name }} |
{% if job.scheduled_for and not job.processing_finished %}
Scheduled for {{ job.scheduled_for|format_datetime_table }}
{% elif job.processing_finished and not job.statistics|selectattr('status', 'equalto', 'sending')|list %}
Sent on {{ job.processing_finished|format_datetime_table }}
{% elif job.processing_started %}
Sending since {{ job.processing_started|format_datetime_table }}
{% else %}
Pending since {{ job.created_at|format_datetime_table }}
{% endif %}
|
{{ job.created_by.name }} |
{{ job.notification_count }} |
{% endfor %}
{% else %}