{{ section.name }}
| Deck | Status | Actions |
|---|---|---|
| {{ deck.display_name }} | {% if deck.status %} {% set st = deck.status.state.value %} {{ st | replace("_", " ") }} {% if deck.status.final_parts and deck.status.raw_parts %} (done: {{ deck.status.final_parts | join(", ") }}; raw: {{ deck.status.raw_parts | join(", ") }}) {% elif deck.status.parts | length > 1 %} (parts {{ deck.status.parts | join(", ") }}) {% elif deck.status.parts | length == 1 and deck.status.parts[0] != 0 %} (part {{ deck.status.parts[0] }}) {% endif %} {% endif %} |
{% if is_armed %}
{% else %}
{% endif %}
{% if deck.status and deck.status.state.value in ('recorded', 'failed') and deck.status.raw_paths %}
{% elif deck.status and deck.status.state.value == 'processing' %}
processing…
{% endif %}
|