{% extends "base.html" %} {% load i18n %} {% load utils %} {% block css %} {{ block.super }} {% endblock css %} {% block js %} {% endblock js %} {% block to_ajaxform %} {{ block.super }} {% endblock to_ajaxform %} {% block contents %}

{% trans "Firmware Change List" %}

{% trans "The firmware is up to date. Changes are that:"%}
{% for change in infos.changelist|dictsortreversed:"version" %} {% endfor %}
{% trans "Version" %} {% trans "Changes" %}
{{ change.version }}
    {% for item in change.itemlist %}
  • {{ item }}
  • {% endfor %}
{% endblock contents %}