{% extends "base.html" %} {% block title %}iterations — gest{% endblock %} {% block nav_iterations %}class="active"{% endblock %} {% block content %}

Iterations

{% if current_status == "active" %}{{ active_count }} active{% else %}{{ active_count }} active{% endif %} · {% if current_status == "completed" %}{{ completed_count }} completed{% else %}{{ completed_count }} completed{% endif %} · {% if current_status == "failed" %}{{ failed_count }} failed{% else %}{{ failed_count }} failed{% endif %}
{% if iterations.is_empty() %}

No iterations found.

{% else %}
gest iteration list
{% for it in iterations %} {% endfor %}
ID Title Status Tasks Phases Tags
{{ it.id.short() }} {{ 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 %}
{% endif %} {% endblock %}