{% macro nav_icon(name) -%} {{ icon_svg(name)|safe }} {%- endmacro %} {% macro status_badge(task) -%} {{ task.status_label }} {%- endmacro %} {% macro avatar(user, size='') -%} {% if user %} {% if user.avatar_path and user.avatar_path.startswith('avatars/') %} Avatar von {{ user.name }} {% else %} Avatar von {{ user.name }} {% endif %} {% endif %} {%- endmacro %} {% macro task_card(task, current_user, compact=false) -%}
{{ status_badge(task) }} {{ task.points_awarded }} Punkte

{{ task.title }}

{{ nav_icon('gear') }}
{% if task.description %}

{{ task.description }}

{% endif %}
Fällig
{{ task.due_date|date_de }}
Zuständig
{{ task.assigned_user.name if task.assigned_user else 'Unverteilt' }}
Rhythmus
{{ task.task_template.recurrence_label }}
{% if task.completed_at %}
Erledigt von
{{ task.completed_by_user.name if task.completed_by_user else '—' }}
{% endif %}
{%- endmacro %}