{% extends 'layout/base.html' %} {% block head %} {{ super() }} {% endblock %} {% block content %}
Versions

Changelog

Release history and updates
{% if changelog_versions %} {% for version_data in changelog_versions %}

{{ version_data.version }}

{{ version_data.date }}
{% if version_data.summary %}

{{ version_data.summary }}

{% endif %} {% for section in version_data.sections %}

{% if section.type %} {{ section.title }} {% else %} {{ section.title }} {% endif %}

{% if section.subsections %} {% for subsection in section.subsections %}
{% if subsection.subtitle %}

{{ subsection.subtitle }}

{% endif %} {% if subsection.changes %}
    {% for change in subsection.changes %}
  • {{ change }}
  • {% endfor %}
{% endif %}
{% endfor %} {% elif section.changes %}
    {% for change in section.changes %}
  • {{ change }}
  • {% endfor %}
{% endif %}
{% endfor %}
{% endfor %} {% else %} {% endif %}
{% endblock %}