--- title: Task List page-header: Task List page-menu: extra.tasks.list layout: default permalink: tasks-list.html ---
| Name | Assigned To | Due Date | Priority | Actions | |
|---|---|---|---|---|---|
| {{ task.name }} |
{% if task.assigned_to and person %}
{% include "ui/avatar.html" person-id=task.assigned_to size="xs" class="me-2" %}
{{ person.full_name }}
{% else %}
Unassigned
{% endif %}
|
{% if task.due_date %} {% include "ui/icon.html" icon="calendar" class="me-1" %} {{ task.due_date }} {% elsif task.due-date %} {% include "ui/icon.html" icon="calendar" class="me-1" %} {{ task.due-date }} {% else %} — {% endif %} | {% if task.priority == "High" %} {% include "ui/badge.html" text="High" color="red" light %} {% elsif task.priority == "Medium" %} {% include "ui/badge.html" text="Medium" color="yellow" light %} {% elsif task.priority == "Low" %} {% include "ui/badge.html" text="Low" color="blue" light %} {% else %} {% include "ui/badge.html" text="—" light %} {% endif %} | {% include "ui/button.html" text="View" size="sm" %} |