dms/templates/jci/_goals.html

15 lines
358 B
HTML

{% load jci_extras %}
<ul>
{% for goal in goals %}
<li>{{ goal }}
{% if goal.standards %}
{% parse_standards goal.standards.all %}
{% endif %}
{% if goal.children %}
{% parse_goals goal.children.all %}
{% endif %}
</li>
{% endfor %}
</ul>