{% extends "base.html" %} {% import "macros/ui.html" as m %} {% block title %}{{ ws_name }} — Backlog{% endblock %} {% block nav_workspaces %}btn-active{% endblock %} {% block content %} {{ m::ws_tabs(ws_name=ws_name, active=ws_active_tab, ws_envs=ws_envs, ws_has_clusters=ws_has_clusters, ws_has_workflows=ws_has_workflows, current_env=current_env) }}

Backlog {{ ws_name }}

{% if can_operate and has_root %} {% endif %}

Items from reflection/backlog.ncl.

{% if can_operate and has_root %} {% endif %} {% if not has_root %}
Workspace path not resolved.
{% endif %} {% if backlog.items %}
{% for item in backlog.items %}
{{ item.id }} {% if item.priority == "High" %} high {% elif item.priority == "Medium" %} medium {% else %} {{ item.priority | lower }} {% endif %} {% if item.kind == "Bug" %} bug {% elif item.kind == "Todo" %} todo {% else %} {{ item.kind | lower }} {% endif %} {% if item.status == "Open" %} open {% elif item.status == "Done" %} done {% else %} {{ item.status | lower }} {% endif %}

{{ item.title }}

{% if item.detail %}

{{ item.detail }}

{% endif %}
{% endfor %}
{% elif has_root %}
No backlog items found in reflection/backlog.ncl.
{% endif %} {% endblock %}