{% extends "base.html" %} {% block body %} {% include "partials/header.html" %}
Gestion du board
{% for cat in all_categories %}
{{ cat.name }}
{% for p in all_projects if p.cat_id == cat.id %}
{{ p.acronym or p.name[:4] | upper }} {{ p.name }} {{ p.get('status', 'active') }}
{% endfor %}
{% endfor %} {% if not all_categories %} {% set es_badge = "Administration" %} {% set es_title = "Le board est vide" %} {% set es_subtitle = "Commencez par créer votre première catégorie." %} {% set es_cards = [ {"icon": '', "color": "blue", "title": "1. Catégorie", "text": "Créez une catégorie pour regrouper vos projets par thème."}, {"icon": '', "color": "purple", "title": "2. Projets", "text": "Ajoutez des projets dans chaque catégorie. Chacun est un kanban."}, {"icon": '', "color": "amber", "title": "3. Tâches", "text": "Les tâches se créent dans le kanban de chaque projet."} ] %} {% set es_cta = {"label": "+ Catégorie", "href": "javascript:editCat('','','')"} %} {% include "partials/empty_state.html" %} {% endif %}
{% endblock %} {% block modals %} {% include "modals/category.html" %} {% set cat_id = '' %} {% include "modals/project.html" %} {% endblock %} {% block scripts %} {% endblock %}