{% extends "base.html" %} {% block title %}td — {{ project_name }}{% 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
{{ i + 1 }} {{ s.short_id }} {{ s.score }} {{ s.title }}
{% endif %}

Tasks

{% if page_tasks.is_empty() %}

No tasks match the current filters.

{% else %}
{% for t in page_tasks %} {% endfor %}
Task list for project {{ project_name }}
ID Status Priority Effort Title
{{ t.short_id }} {{ t.status }} {{ t.priority }} {{ t.effort }} {{ t.title }}
{% if total_pages > 1 %} {% endif %} {% endif %}
{% endblock %}