{% extends "pages/base.html" %} {% load i18n %} {% block title %}{% trans "Changelog" %}{% endblock %} {% block extra_head %} {{ block.super }} {% endblock %} {% block content %}

{% trans "Changelog" %}

{% trans "Track unreleased changes and published versions as commits land in git." %}

{% if error_message %}
{{ error_message }}
{% endif %} {% if not initial_sections %}

{% trans "No changelog information is available yet." %}

{% endif %}
{% include "includes/changelog/section_list.html" with sections=initial_sections variant='public' %}
{% if has_more_sections %} {{ loading_label }} {% else %} {{ complete_label }} {% endif %}
{% include "includes/changelog/scroll_script.html" %} {% endblock %}