{% extends "base.html" %} {% block title %}td — {{ task.title }}{% endblock %} {% block content %}

{{ task.title }}

{{ task.status }}
{% if !task.description.is_empty() %}

{{ task.description }}

{% endif %}
Task metadata
ID {{ task.short_id }}
Type {{ task.task_type }}
Priority {{ task.priority }}
Effort {{ task.effort }}
Created
Updated
{% if !task.labels.is_empty() %}

Labels

{% for l in task.labels %} {{ l }} {% endfor %}
{% endif %} {% if !blockers_open.is_empty() || !blockers_resolved.is_empty() %}

Blockers

{% endif %} {% if !subtasks.is_empty() %}

Subtasks

{% for s in subtasks %} {% endfor %}
Subtasks of {{ task.title }}
ID Status Title
{{ s.short_id }} {{ s.status }} {{ s.title }}
{% endif %} {% if !task.logs.is_empty() %}

Work log

{% for log in task.logs %}

{{ log.message }}

{% endfor %}
{% endif %}
{% endblock %}