{% extends "base.html" %} {% block title %}AutoKanban{% endblock %} {% block content %}
{% if login_result == 'success' %}
Admin-Login erfolgreich!
{% elif login_result == 'fail' %}
Admin-Login fehlgeschlagen!
{% endif %} {% if print_result == 'success' %}
Druck erfolgreich!
{% elif print_result == 'not_allowed' %}
Drucken nicht erlaubt!
{% elif print_result and print_result.startswith('error:') %}
Druckfehler: {{ print_result[6:] }}
{% endif %} {% if preview_image %}
Vorschau Druckkarte:
Karten-Vorschau
{% endif %}
Was ist Kanban?
Kanban ist eine Methode zur Visualisierung und Steuerung von Aufgaben. Jede Aufgabe wird als Karte dargestellt und wandert durch verschiedene Status wie "Offen", "Genehmigt" und "Gedruckt". So behalten alle den Überblick über den aktuellen Stand der Arbeit.
NiedrigHoch

Aufgaben

{% for task in tasks %}
{{ task.content }}
Von: {{ task.user }}
Priorität: {{ task.priority }}
Status: {{ 'Offen' if task.status == 'pending' else ('Genehmigt' if task.status == 'approved' else 'Gedruckt') }}
{% if task.status == 'pending' and admin %}
{% endif %} {% if task.status == 'approved' %}
{% endif %} {% if task.status == 'printed' and admin %}
{% endif %}
{% else %}

Keine Aufgaben vorhanden.

{% endfor %}

Letzte genehmigte Aufgaben

{% for task in approved_tasks %}
{{ task.content }}
Von: {{ task.user }}
Priorität: {{ task.priority }}
{% else %}

Keine genehmigten Aufgaben vorhanden.

{% endfor %}
{% endblock %}