{% 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 }}
{% if !loop.last %}
{% endif %} {% endfor %}

Blockers

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

Subtasks

{% for t in subtasks %} {% endfor %}
Subtasks
ID Status Type Priority Effort Title Labels Created
{{ t.short_id }} {{ t.status }} {{ t.task_type }} {{ t.priority }} {{ t.effort }} {{ t.title }} {% for l in t.labels %}{% if !loop.first %}, {% endif %}{{ l }}{% endfor %}
{% endif %} {% call macros::task_form_dialog("dlg-edit-task", edit_heading, edit_form_action, "Save", "edit", all_projects, active_project, "edit", task.title, task.description_raw, task.task_type, task.priority, task.effort, task.parent_id, "") %}{% endcall %} {% endblock %}