{% if goals %}
{% for goal in goals %}
{{ goal[3] }}
{% set progress = goal[1] / goal[2] * 100 %}
{{ '%0.0f'| format(progress| float) }}%
{% if goal[1] == goal[2] %}
{{ goal[1] }} / {{ goal[2] }}
{% else %}
{{ goal[1] }} / {{ goal[2] }}
{% endif %}
{% endfor %}
{% endif %}