{% extends "base.html" %} {% block title %}iterations — gest{% endblock %} {% block nav_iterations %}class="active"{% endblock %} {% block content %}
No iterations found.
{% else %}| ID | Title | Status | Tasks | Phases | Tags |
|---|---|---|---|---|---|
| {{ it.id.short() }}{{ it.id.to_string()[8..] }} | {{ it.title }} | {% match it.status %} {% when IterationStatus::Active %} active {% 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 %} |