No iterations found.
{% else %}| ID | Title | Status | Tasks | Phases | Tags |
|---|---|---|---|---|---|
| {{ it.id.short() }} | {{ it.title }} | {% match it.status %} {% when IterationStatus::Active %} active {% when IterationStatus::Cancelled %} cancelled {% when IterationStatus::Completed %} completed {% when IterationStatus::Failed %} failed {% endmatch %} | {{ it.tasks.len() }} | {% match it.phase_count %}{% when Some with (n) %}{{ n }}{% when None %}—{% endmatch %} | {% for t in it.tags %}#{{ t }}{% if !loop.last %} {% endif %}{% endfor %} |