{% extends "withnav_template.html" %} {% from "components/table.html" import list_table, field, text_field, link_field, right_aligned_field_heading, hidden_field_heading, row_heading, notification_status_field, notification_carrier_field, notification_carrier_message_field %} {% from "components/ajax-block.html" import ajax_block %} {% block service_page_title %} Dashboard {% endblock %} {% block maincolumn_content %}
| Job ID# | Template | Job status | Sender | # of Recipients |
|---|---|---|---|---|
| {{ 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 }} {% else %} {% if job.processing_finished %} 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 %} {% endif %} | {{ job.created_by.name }} | {{ job.notification_count }} |