{% extends "base.html" %} {% block title %}Backlog {{ item.id }} — ABREKA{% endblock %} {% block breadcrumb %}
{% endblock %} {% block content %}| 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 }} |