mirror of
https://github.com/containers/podman-compose.git
synced 2025-05-28 14:17:50 +02:00
34 lines
685 B
Django/Jinja
34 lines
685 B
Django/Jinja
{% for section, _ in sections|dictsort(by='key') %}
|
|
{% set underline = "-" %}
|
|
{% if section %}
|
|
{{section}}
|
|
{{ underline * section|length }}{% set underline = "~" %}
|
|
|
|
{% endif %}
|
|
{% if sections[section] %}
|
|
{% for category, val in definitions|dictsort if category in sections[section]%}
|
|
|
|
{{ definitions[category]['name'] }}
|
|
{{ underline * definitions[category]['name']|length }}
|
|
|
|
{% for text, values in sections[section][category]|dictsort(by='value') %}
|
|
- {{ text }}
|
|
{% endfor %}
|
|
|
|
{% if sections[section][category]|length == 0 %}
|
|
|
|
No significant changes.
|
|
|
|
|
|
{% else %}
|
|
{% endif %}
|
|
{% endfor %}
|
|
{% else %}
|
|
|
|
No significant changes.
|
|
|
|
|
|
{% endif %}
|
|
{% endfor %}
|
|
(venv) p12@exec-desktop:~/cod
|