dms/templates/jci/list.html

25 lines
829 B
HTML

{% load jci_extras %}
{% if sections %}
<ul>
{% for section in sections %}
<li>{{section}}
{% if section.headlines.all %}
<ul>
{% for headline in section.headlines.all %}
<li>{{headline}}
{% if headline.standards.all %}
<ul>
{% for std in headline.standards.all %}
<li>{{std}} - {{std.name}} {% count_documents std %} </li>
{% endfor %}
</ul>
{% endif %}
</li>
{% endfor %}
</ul>
{% endif %}
</li>
{% endfor %}
</ul>
{% endif %}