{% extends "scipost/base.html" %} {% block pagetitle %}: Tasklist{% endblock %} {% block content %}
{% include 'bi/cone-striped.html' %} This page is under construction. It might not contain all your todo items.

Tasklist

{% for task_type, tasks in kinds_with_tasks.items %}

{{ task_type.name }}

{{ task_type.description }}

{{ tasks|length }}
    {% for task in tasks %}
  • {{ task.as_html|safe }}
  • {% empty %}
  • No tasks of this type
  • {% endfor %}
{% empty %}

No tasks found

{% endfor %}
{% endblock %}