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

{{ task.title }}

{{ task.status }}
{% if !task.description.is_empty() %}
{{ task.description|safe }}
{% endif %}
{% if task.status != "open" %} {% endif %} {% if task.status != "in_progress" %} {% endif %} {% if task.status != "closed" %} {% endif %}

Are you sure?

This will delete {{ task.short_id }}.


{% if !task.labels.is_empty() %}

Labels

{% for l in task.labels %}
{% endfor %}
{% endif %}
Work log ({{ task.logs.len() }}) {% for log in task.logs %}
— {{ log.message|safe }}
{% endfor %}

Blockers

{% if !blockers_open.is_empty() || !blockers_resolved.is_empty() %} {% endif %}
{% if !subtasks.is_empty() %}

Subtasks

{% call macros::task_table(project_name, subtasks, "Subtasks") %}{% endcall %}
{% endif %} {% endblock %}