{% comment %} Reusable horizontal bar chart using Bootstrap progress bars. Context: bars - list of dicts with keys: label, count, pct, color {% endcomment %} {% load static %} {% if bars %} {% for bar in bars %}
{{ bar.label }}
{% if bar.pct > 15 %}{{ bar.count }}{% endif %}
{% if bar.pct <= 15 %}{{ bar.count }}{% endif %}
{% endfor %} {% else %}

No data available.

{% endif %}