Current Project

{{ project.name }}

Projects

Sprints

{% if project.sprints %} {# Get active sprints #} {% set active_sprints = project.sprints|selectattr('status', 'equalto', 'Active')|list %} {# Get planned sprints #} {% set planned_sprints = project.sprints|selectattr('status', 'equalto', 'Planned')|list %} {# Get completed sprints #} {% set completed_sprints = project.sprints|selectattr('status', 'equalto', 'Completed')|list %} {# Active Sprints Section #} {% if active_sprints %}

Active

{% endif %} {# Planned Sprints Section #} {% if planned_sprints %}

Planned

{% endif %} {# Completed Sprints Section #} {% if completed_sprints %}

Completed

{% endif %} {% else %}

No sprints yet

Create a new sprint to get started

{% endif %}