{# task/_task_item.twig — partial dla pojedynczego zadania #} {% set status_icon = { 'DONE': '', 'SKIPPED': '', 'FAILED': '', } %} {% set status_class = { 'DONE': 'status-done', 'SKIPPED': 'status-skipped', 'FAILED': 'status-failed', } %}
{% if t.status == 'DONE' %} {% elseif t.status == 'SKIPPED' %} {% elseif t.status == 'FAILED' %} {% else %} {% endif %}
{{ t.task_name }}
{% if t.is_mandatory %} {{ translations.mandatory ?? 'mandatory' }} {% endif %} {% if t.requires_photo %} {{ translations.photo_required ?? 'photo' }} {% endif %} {% if t.execution_time %} {{ t.execution_time | slice(0, 5) }} {% endif %}
{% if t.completed_by and t.status == 'DONE' %}
{{ t.completed_by }} {% if t.completed_at %}· {{ t.completed_at | date('H:i') }}{% endif %}
{% endif %} {% if t.note %}
{{ t.note }}
{% endif %}