{% if pending_count > 0 %}
{{ pending_count }} pending
{% endif %} {% if completed_count > 0 %}
{{ completed_count }} completed
{% endif %} {% if failed_count > 0 %}
{{ failed_count }} failed
{% endif %} {% if total_count == 0 %} No actions scheduled for today {% endif %}
{% if actions %}
{% for item in actions %}
{% if item.action.action_type == 'start' %}
{% elif item.action.action_type == 'stop' %}
{% elif item.action.action_type == 'download' %}
{% endif %}
{{ item.action.action_type }} {% if item.action.execution_status == 'pending' %} {{ item.action.scheduled_time|local_datetime('%H:%M') }} {% elif item.action.execution_status == 'completed' %} {% elif item.action.execution_status == 'failed' %} {% endif %}
{% if item.location %} {{ item.location.name }} {% elif item.project %} {{ item.project.name }} {% endif %}
{% if item.action.execution_status == 'completed' and item.result %} {% if item.result.cycle_response and item.result.cycle_response.downloaded_folder %}
{{ item.result.cycle_response.downloaded_folder }} {% if item.result.cycle_response.download_success %}downloaded{% endif %}
{% endif %} {% elif item.action.execution_status == 'failed' and item.action.error_message %}
{{ item.action.error_message[:50] }}{% if item.action.error_message|length > 50 %}...{% endif %}
{% endif %}
{% if item.action.execution_status == 'pending' %} Scheduled {% elif item.action.executed_at %} {{ item.action.executed_at|local_datetime('%H:%M') }} {% endif %}
{% endfor %}
{% else %}

No scheduled actions for today

{% endif %}