Newsletter/src/templates/snippets/pages-nest.jinja
2025-02-17 14:50:50 +01:00

14 lines
547 B
Django/Jinja

{% from 'snippets/page-detail.jinja' import showDetail with context %}
{% from 'snippets/page-front.jinja' import pageFront with context %}
{% from 'snippets/page-circuit.jinja' import showCircuit with context %}
{%- macro showNestedPages(chapter, documents) -%}
{% if chapter['nested']%}
<pre>{{ documents[chapter['nested']]|length }} </pre>
{% for nest in documents[chapter['nested']] %}
{{ showDetail(nest, chapter) }}
{{ showCircuit(nest) }}
{% endfor %}
{% endif %}
{%- endmacro -%}