mirror of
https://github.com/prowler-cloud/prowler.git
synced 2026-07-24 13:01:56 +00:00
14 lines
390 B
Django/Jinja
14 lines
390 B
Django/Jinja
{% set category_order = definitions.keys() %}
|
|
{% for section, _ in sections.items() %}
|
|
{% for category in category_order if category in sections[section] %}
|
|
### {{ definitions[category]['name'] }}
|
|
|
|
{% for text, values in sections[section][category].items() -%}
|
|
- {{ text }}{% if values %} {{ values|join(', ') }}{% endif %}{{ "\n" }}
|
|
{%- endfor %}
|
|
|
|
{% endfor %}
|
|
{% endfor %}
|
|
---
|
|
{{ "\n" }}
|