{# Per-project wiki mini-chart grid for the category page (#572). One small card per project of the current category that has at least one classified task. Replaces the per-category aggregate (#533) which still mixed unrelated métiers (e.g. finance vs. server boards under the same cat). Expects: - ``wiki_by_project``: list of {project, sections, total} (already ordered) - ``wiki_by_project_total``: grand total across cards - ``cat``: current category (for the accent color) #} {% if wiki_by_project %}
Tâches par section wiki — par projet {{ wiki_by_project_total }}
{% for entry in wiki_by_project %}
{{ entry.project.acronym or entry.project.name[:4] | upper }} / {{ entry.project.name }} {{ entry.total }}
{% for s in entry.sections %}
{{ s.section }} {{ s.count }}
{% endfor %}
{% endfor %}
{% endif %}