1{% for section, _ in sections|dictsort(by='key') %} 2{% set underline = "-" %} 3{% if section %} 4----- {{section}} 5 6{% endif %} 7{% if sections[section] %} 8{% for category, val in definitions|dictsort if category in sections[section]%} 9 10### {{ definitions[category]['name'] }} 11 12{% for text, values in sections[section][category]|dictsort(by='value') %} 13- {{ text }} 14{% endfor %} 15 16{% if sections[section][category]|length == 0 %} 17 18No significant changes. 19 20 21{% else %} 22{% endif %} 23{% endfor %} 24{% else %} 25 26No significant changes. 27 28 29{% endif %} 30{% endfor %} 31