{% extends "adminpanel/base.html" %} {% block title %}Tasks — admin{% endblock %} {% block heading %}Tasks{% endblock %} {% block content %}

Add a task

Full form
{% csrf_token %}

It lands in To do. Use the full form if you want notes as well.

{{ open_count }} open {% if overdue %}{{ overdue }} overdue{% endif %}
{% for column in columns %}

{{ column.label }}{{ column.tasks|length }}

{% for t in column.tasks %}
{% if t.project %}{{ t.project.client }} · {{ t.project.name }}{% else %}No project{% endif %} {% if t.due_date %} · due {{ t.due_date|date:"j M" }}{% endif %}
{{ t.get_priority_display }} {% if t.due_date and t.due_date < today and t.status != 'completed' %} Overdue {% endif %}
{% csrf_token %} {% for value, label in statuses %} {% if value != column.value %} {% endif %} {% endfor %}
{% empty %}
Nothing here.
{% endfor %}
{% endfor %}
{% endblock %}