{% extends "base.html" %} {% import "macros.html" as macros %} {% block title %}{{ project_name }} — td{% endblock %} {% block content %}

{{ project_name }}

Open

{{ stats_open }}

In progress

{{ stats_in_progress }}

Closed

{{ stats_closed }}

{% if !next_up.is_empty() %}
Next up
{% for (i, s) in next_up.iter().enumerate() %} {% endfor %}
Top scored tasks recommended to work on next
# ID Score Title Change status
{{ i + 1 }} {{ s.short_id }} {{ s.score }} {{ s.title }} {% if s.status != "open" %} {% endif %} {% if s.status != "in_progress" %} {% endif %} {% if s.status != "closed" %} {% endif %}
{% endif %} Tasks
{% if page_tasks.is_empty() %}

No tasks match the current filters.

{% else %} {% call macros::sortable_task_table(project_name, page_tasks, "Task list for project", sort_ctx) %}{% endcall %} {% if total_pages > 1 %} {% endif %} {% endif %} {% endblock %}