{% extends "app.html" %} {% comment %} # SPDX-License-Identifier: AGPL-3.0-or-later {% endcomment %} {% load bootstrap %} {% load i18n %} {% load static %} {% block page_js %} {% endblock %} {% block configuration %}
{% csrf_token %}
{% for snapshot in snapshots %} {% endfor %}
{% trans "Number" %} {% trans "Date" %} {% trans "Description" %} {% trans "Rollback" %}
{{ snapshot.number }} {% if snapshot.is_default %} {% trans "will be used at next boot" %} {% endif %} {% if snapshot.is_active %} {% trans "in use" %} {% endif %} {{ snapshot.date }} {% trans snapshot.description %} {% if not snapshot.is_default and not snapshot.is_active %} {% endif %}
{% endblock %}