{% extends "base.html" %} {% block title %}Backlog — ABREKA{% endblock %} {% block breadcrumb %}
{% endblock %} {% block content %} {% if items %}| ID | Priority | Status | Title | Tags | Source | Created |
|---|---|---|---|---|---|---|
| {{ item.id }} | {{ item.priority }} | {{ item.status }} | {{ item.title[:60] }}{% if item.title|length > 60 %}...{% endif %} | {% for t in item.get('tags', []) %} {{ t }} {% endfor %} | {% if item.source_exp %} {{ item.source_exp }} {% else %} — {% endif %} | {{ item.created_at[:10] }} |
No backlog items{% if status_filter %} with status "{{ status_filter }}"{% endif %}.