{% if item.epic_title and item.column_name != 'todo' %}
{{ item.epic_title }}
{% endif %}
{% if item.repo %}
{{ item.repo }}
{% endif %}
{{ item.title }}
{% if item.is_blocked and item.column_name == 'todo' %}
{% for dep in item.blocking_items %}π {{ dep.title }}{% endfor %}
{% endif %}
{% if item.status %}
{% if item.status == 'running' %}
Running
{% elif item.status == 'failed' %}
β Failed
{% elif item.status == 'cancelled' %}
β Cancelled
{% elif item.status == 'paused' %}
βΈ Paused
{% elif item.status == 'conflict' %}
β Merge conflict
{% elif item.status == 'merge_blocked' %}
β Merge blocked
{% elif item.status == 'resolving_conflicts' %}
Resolving conflicts
{% endif %}
{% endif %}
{% if item.column_name == 'todo' %}
{% if item.is_blocked %}
{% if item.start_copy %}
{% else %}
{% endif %}
{% else %}
{% if item.start_copy %}
{% else %}
{% endif %}
{% endif %}
{% elif item.column_name == 'doing' and item.status == 'failed' %}
{% elif item.column_name == 'doing' and item.status == 'running' %}
{% elif item.column_name == 'doing' and item.status == 'paused' %}
{% elif item.column_name == 'review' %}
{% if item.has_file_changes == 0 %}
{% else %}
{% endif %}
{% elif item.column_name == 'questions' %}
{% elif item.column_name == 'done' %}
{% elif item.column_name == 'archive' %}
{% endif %}
{% if item.column_name == 'doing' and item.log_count is defined and item.log_count > 0 %}
{{ item.log_count }}
{% endif %}