{% extends "base.html" %} {% block title %}iterations — gest{% endblock %} {% block nav_iterations %}class="active"{% endblock %} {% block content %}
Iterations
{{ iterations.len() }} iteration{% if iterations.len() != 1 %}s{% 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.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 %}
{% endif %} {% endblock %}