| ID |
{{ iteration.id().short() }}
|
| Title |
{{ iteration.title() }} |
| Status |
{% if iteration.status().to_string() == "active" %}
active
{% else if iteration.status().to_string() == "cancelled" %}
cancelled
{% else if iteration.status().to_string() == "completed" %}
completed
{% endif %}
|
| Tasks |
{{ task_count }} total
·
{{ status_counts.open }} open
·
{{ status_counts.in_progress }} in progress
·
{{ status_counts.done }} done
{% if status_counts.cancelled > 0 %}
·
{{ status_counts.cancelled }} cancelled
{% endif %}
|
{% if !tags.is_empty() %}
| Tags |
{% for tag in tags %}
#{{ tag }}{{ " " }}
{% endfor %}
|
{% endif %}
| Created |
{{ iteration.created_at().format("%Y-%m-%d %H:%M UTC") }} |
| Updated |
{{ iteration.updated_at().format("%Y-%m-%d %H:%M UTC") }} |
{% if !iteration.description().is_empty() %}
Description
{{ iteration.description() }}
{% endif %}