{% extends "layout.html" %} {% set active = 'tasks' %} {% block page_title %}Aufgaben – AzA Intern{% endblock %} {% block content %} {% if tasks %} {% for t in tasks %} {% endfor %}
Titel Status Priorität Kategorie Zugewiesen Fällig Tags
{{ t.title }} {{ t.status }} {{ t.priority }} {{ t.category or '–' }} {{ t.assigned_username or '–' }} {{ t.due_date or '–' }} {% for tag in t.tags %}{{ tag }}{% endfor %}
{% else %}

Keine Aufgaben gefunden.

{% endif %} {% endblock %}