{# Tasks-per-wiki-section chart (#516). Horizontal bars, one per section_path from task_wiki_classifications, busiest first. Expects: - ``wiki_sections``: [{section, count, pct}] (pct = share of the busiest) - ``wiki_sections_total``: total classified tasks #} {% if wiki_sections %}
Tâches par section wiki {{ wiki_sections_total }}
{% for s in wiki_sections %}
{{ s.section }} {{ s.count }}
{% endfor %}
{% endif %}