{% extends "base.html" %} {% block content %}
📋 Kanban 🌳 Arcs → {{ arc.title }}
{{ arc.priority_emoji }}

{{ arc.title }}

{{ arc.status }} {{ done_count }}/{{ total_count }} done
{% if arc.description %}

{{ arc.description }}

{% endif %}
{% if graph_data %}

Grafo de Dependências ↓ Vertical → Horizontal 🌳 Tree | {{ '⌒ Curvas' if edges == 'bezier' else '⊾ Ângulos' }}

{% endif %}

Itens

{% if children %} {% with nodes=children %} {% include "partials/tree_node.html" %} {% endwith %} {% else %}

No children found.

{% endif %}
{% endblock %}