{% extends "layout.html" %} {% set active = 'tasks' %} {% block page_title %}Aufgaben – AzA Intern{% endblock %} {% block content %}
| 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 %} |
Keine Aufgaben gefunden.
{% endif %} {% endblock %}