{% extends "base.html" %} {% block title %}Backlog {{ item.id }} — ABREKA{% endblock %} {% block breadcrumb %} {% endblock %} {% block content %}

Backlog {{ item.id }}

Details

{% if item.tags %} {% endif %} {% if item.source_exp %} {% endif %} {% if item.resolved_exp %} {% endif %} {% if item.dismiss_reason %} {% endif %}
Title{{ item.title }}
Status{{ item.status.value }}
Priority{{ item.priority }}
Created{{ item.created_at.isoformat()[:19] }}
Updated{{ item.updated_at.isoformat()[:19] }}
Tags {% for t in item.tags %} {{ t }} {% endfor %}
Source Exp{{ item.source_exp }}
Resolved Exp{{ item.resolved_exp }}
Dismiss Reason{{ item.dismiss_reason }}
{% if item.description %}

Description

{{ item.description | md }}
{% endif %} {% endblock %}