{% set distribution = distribution or muscle_distribution %} {% set category_name = category_name or 'Muscle Group' %} {% set breakdown_id = category_name.lower().replace(' ', '-') %} {% if distribution %}

{{ category_name }} Distribution

{% for item in distribution %}
{% if item.percentage > 18 %} {{ item.attribute_name }} {{ item.percentage }}% {% elif item.percentage > 8 %} {{ item.percentage }}% {% endif %}
{% endfor %}
{% endif %}