2021-04-19 11:32:52 +00:00
|
|
|
{% for section, _ in sections.items() %}
|
|
|
|
{% if section %}{{section}}{% endif -%}
|
|
|
|
{% if sections[section] %}
|
|
|
|
{% for category, val in definitions.items() if category in sections[section] %}
|
|
|
|
### {{ definitions[category]['name'] }}
|
|
|
|
{% if definitions[category]['showcontent'] %}
|
|
|
|
{% for text, values in sections[section][category].items() %}
|
2023-06-13 14:18:47 +00:00
|
|
|
- {{ text }}{% if values %} {{ values|join(', ') }}{% endif +%}
|
2021-04-19 11:32:52 +00:00
|
|
|
{% endfor %}
|
2023-06-13 14:18:47 +00:00
|
|
|
|
2021-04-19 11:32:52 +00:00
|
|
|
{% endif %}
|
|
|
|
{% endfor %}
|
|
|
|
{% endif %}
|
|
|
|
{% endfor %}
|