{% if sync %}

{% if sync.status in ['queued', 'in_progress'] %} Current Sync {% else %} Last Sync {% endif %}

{{ sync.status | replace('_', ' ') | title }}
{% if sync.completed_at %}
Completed: {{ sync.completed_at.strftime('%Y-%m-%d %H:%M:%S UTC') }}
{% endif %}
{% if sync.status in ['completed', 'failed'] %}

Results

Jobs Retrieved: {{ sync.jobs_retrieved_count or 0 }}
{% endif %} {% if sync.errors %}

Errors ({{ sync.errors|length }})

{% for error in sync.errors %}
{{ error.error_type }}
{{ error.error_message }}
{% if error.step_context %}
Step: {{ error.step_context }}
{% endif %}
{% endfor %}
{% endif %}
{% endif %}