| ID |
{{ task.id().short() }}
|
| Title |
{{ task.title() }} |
| Status |
{% if task.status().to_string() == "open" %}
○ open
{% else if task.status().to_string() == "in-progress" %}
◐ in-progress
{% else if task.status().to_string() == "done" %}
● done
{% else if task.status().to_string() == "cancelled" %}
✗ cancelled
{% endif %}
{% if is_blocked %}
BLOCKED
{% endif %}
{% if blocking %}
BLOCKING
{% endif %}
|
{% if let Some(p) = task.priority() %}
| Priority |
P{{ p }} |
{% endif %}
{% if let Some(who) = task.assigned_to() %}
| Assigned to |
{{ who }} |
{% endif %}
{% if !tags.is_empty() %}
| Tags |
{% for tag in tags %}
#{{ tag }}{{ " " }}
{% endfor %}
|
{% endif %}
| Created |
{{ task.created_at().format("%Y-%m-%d %H:%M UTC") }} |
| Updated |
{{ task.updated_at().format("%Y-%m-%d %H:%M UTC") }} |
{% if !display_links.is_empty() %}
Links
{% for link in display_links %}
| {{ link.rel }} |
{% if let Some(href) = link.href %}
{{ link.display_text }}
{% else %}
{{ link.display_text }}
{% endif %}
|
{% endfor %}
{% endif %}
{% if !description_html.is_empty() %}
Description
{{ description_html|safe }}
{% endif %}