• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1{% for section, _ in sections.items() %}
2{% set underline = underlines[0] %}{% if section %}{{section}}
3{{ underline * section|length }}{% set underline = underlines[1] %}
4
5{% endif %}
6
7{% if sections[section] %}
8{% for category, val in definitions.items() if category in sections[section]%}
9{{ definitions[category]['name'] }}
10{{ underline * definitions[category]['name']|length }}
11
12{% if definitions[category]['showcontent'] %}
13{% for text, values in sections[section][category].items() %}
14- {{ text }}
15{% endfor %}
16
17{% else %}
18- {{ sections[section][category]['']|join(', ') }}
19
20{% endif %}
21{% if sections[section][category]|length == 0 %}
22No significant changes.
23
24{% else %}
25{% endif %}
26
27{% endfor %}
28{% else %}
29No significant changes.
30
31
32{% endif %}
33{% endfor %}
34