Iterations

All ({{ active_count + completed_count + cancelled_count }})  ·  Active ({{ active_count }})  ·  Completed ({{ completed_count }})  ·  Cancelled ({{ cancelled_count }})
{% if rows.is_empty() %}

No iterations found.

{% else %}
gest iteration list
{% for row in rows %} {% endfor %}
ID Title Status Tasks Phases Tags
{{ row.iteration.id().short() }} {{ row.iteration.title() }} {% if row.iteration.status().to_string() == "active" %} active {% else if row.iteration.status().to_string() == "cancelled" %} cancelled {% else if row.iteration.status().to_string() == "completed" %} completed {% endif %} {{ row.task_count }} {{ row.phase_count }} {% for tag in row.tags %} #{{ tag }}{{ " " }} {% endfor %}
{% endif %}