{% 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 %} {% for task in tasks %} {% endfor %} {% endfor %}
Type Name Due Actions
{{ task.kind.name }} {{ task.title }} {{ task.due_date }} {% for action in task.actions|slice:":2" %}{{ action.as_html|safe }}{% endfor %} {% if task.actions|length > 2 %}
{% endif %}
{% endblock %}