_template.rst 883 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. {% for section in sections %}
  2. {% set underline = "-" %}
  3. {% if section %}
  4. {{section}}
  5. {{ underline * section|length }}{% set underline = "~" %}
  6. {% endif %}
  7. {% if sections[section] %}
  8. {% for category, val in definitions.items() if category in sections[section] and category != 'trivial' %}
  9. {{ definitions[category]['name'] }}
  10. {{ underline * definitions[category]['name']|length }}
  11. {% if definitions[category]['showcontent'] %}
  12. {% for text, values in sections[section][category]|dictsort(by='value') %}
  13. - {{ text }}{% if category != 'vendor' and category != 'process' %} ({{ values|sort|join(', ') }}){% endif %}
  14. {% endfor %}
  15. {% else %}
  16. - {{ sections[section][category]['']|sort|join(', ') }}
  17. {% endif %}
  18. {% if sections[section][category]|length == 0 %}
  19. No significant changes.
  20. {% else %}
  21. {% endif %}
  22. {% endfor %}
  23. {% else %}
  24. No significant changes.
  25. {% endif %}
  26. {% endfor %}