{% extends 'layouts/base.twig' %} {% block title %}{{ title }} — Бизнес.Точка{% endblock %} {% block content %}

{{ title }}

{# Выбор доски #} Добавить задачу
{# Статистика #}
Всего

{{ stats.total }}

Выполнено

{{ stats.completed }}

В ожидании

{{ stats.pending }}

Просрочено

{{ stats.overdue }}

{# Канбан доска #}
{% for column in kanbanColumns %}
{{ column.name }}
{{ column.items|length }}
{% for item in column.items %}
{{ item.title }}
{% if item.priority == 'urgent' %} Срочно {% elseif item.priority == 'high' %} Высокий {% endif %}
{% if item.description %}

{{ item.description|length > 50 ? item.description|slice(0, 50) ~ '...' : item.description }}

{% endif %}
{% if item.due_date %} {{ item.due_date|date('d.m') }} {% if item.due_date < date('Y-m-d') %} ! {% endif %} {% endif %}
{% endfor %} {# Кнопка добавления #} Добавить задачу
{% endfor %}
{% endblock %} {% block scripts %} {% endblock %}