{% extends "base.html" %} {% block content %}
{% if current_search or current_domain_id or current_project_id or current_status or current_priority or current_context %} Clear {% endif %}
{% if items %}
{% for item in items %}
{% with reorder_url="/tasks/reorder", item_id=item.id %} {% include 'partials/reorder_arrows.html' %} {% endwith %}
{% if item.status not in ['done', 'cancelled'] %}
{% if running_task_id and item.id|string == running_task_id %}
{% else %}
{% endif %}
{% endif %} {{ item.title }} {% if item.project_name %} {{ item.project_name }} {% endif %} {% if item.domain_name %} {{ item.domain_name }} {% endif %} {% if item.due_date %} {{ item.due_date }} {% endif %} {{ item.status|replace('_', ' ') }}
Edit
{% endfor %}
{% else %}
No tasks found
Create First Task
{% endif %} {% endblock %}