{% extends "layout.html" %} {% set active = 'tasks' %} {% block page_title %}{{ task.title }} – AzA Intern{% endblock %} {% block content %}

Status: {{ task.status }}  |  Priorität: {{ task.priority }}  |  Kategorie: {{ task.category or '–' }}

Zugewiesen: {{ task.assigned_username or '–' }}  |  Fällig: {{ task.due_date or '–' }}

Erstellt von: {{ task.creator_username }}  |  Aktualisiert: {{ task.updated_at }}

{% if tags %}

Tags: {% for tag in tags %}{{ tag }}{% endfor %}

{% endif %} {% if task.description %}

{{ task.description }}

{% endif %}

Dateien zur Aufgabe

{% set zone_id = 'task-' ~ task.id ~ '-upload' %} {% set task_id = task.id %} {% set show_meta = false %} {% include "partials/upload_zone.html" with context %} {% if task_files %} {% for f in task_files %} {% endfor %}
Dateiname Grösse Hochgeladen
{{ f.original_filename }} {{ (f.size_bytes / 1024)|round(1) }} KB {{ f.created_at }} ({{ f.uploader }}) Download {% if f.original_filename.lower().endswith('.odt') %} Im Browser bearbeiten {% endif %}
{% else %}
Dateiname Grösse Hochgeladen
{% endif %}

Noch keine Dateien zu dieser Aufgabe.

{% if task_documents %} {% for d in task_documents %} {% endfor %}
TitelKategorieGeändert
{{ d.title }} {{ d.category or '–' }} {{ d.updated_at }} ({{ d.creator_username }}) Öffnen
{% else %}

Noch keine Dokumente zu dieser Aufgabe.

{% endif %}

Kommentare

{% if comments %} {% else %}

Noch keine Kommentare.

{% endif %}
{% endblock %} {% block extra_scripts %} {% endblock %}