No tasks found.
{% else %}| ID | Pri | Title | Info | Tags | Status | |
|---|---|---|---|---|---|---|
| {% if row.task.status().to_string() == "open" %} ○ {% else if row.task.status().to_string() == "in-progress" %} ◐ {% else if row.task.status().to_string() == "done" %} ● {% else if row.task.status().to_string() == "cancelled" %} ✗ {% endif %} | {{ row.task.id().short() }} | {% if let Some(p) = row.task.priority() %} [P{{ p }}] {% endif %} | {% if row.task.status().is_terminal() %} {{ row.task.title() }} {% else %} {{ row.task.title() }} {% endif %} | {% if row.is_blocked %} blocked {% endif %} {% if row.blocking %} blocking {% endif %} | {% for tag in row.tags %} #{{ tag }}{{ " " }} {% endfor %} | {% if row.task.status().to_string() == "open" %} open {% else if row.task.status().to_string() == "in-progress" %} in-progress {% else if row.task.status().to_string() == "done" %} done {% else if row.task.status().to_string() == "cancelled" %} cancelled {% endif %} |