mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-01-21 07:55:00 +00:00
98 lines
3.3 KiB
HTML
98 lines
3.3 KiB
HTML
{% extends "service-subsubmenu.html" %}
|
|
{% comment %}
|
|
#
|
|
# This file is part of FreedomBox.
|
|
#
|
|
# This program is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU Affero General Public License as
|
|
# published by the Free Software Foundation, either version 3 of the
|
|
# License, or (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU Affero General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU Affero General Public License
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
#
|
|
{% endcomment %}
|
|
|
|
{% load bootstrap %}
|
|
{% load i18n %}
|
|
|
|
{% block configuration %}
|
|
<form class="form" method="post">
|
|
<div class="button-table">
|
|
|
|
<div class="button-row row">
|
|
{% csrf_token %}
|
|
<div class="col-xs-6 text-left">
|
|
<input type="submit" class="btn btn-primary" name="create"
|
|
value="{% trans 'Create Snapshot' %}"/>
|
|
</div>
|
|
<div class="col-xs-6 text-right">
|
|
<input type="submit" class="btn btn-danger" name="delete_selected"
|
|
value="{% trans 'Delete Snapshots' %}"/>
|
|
</div>
|
|
</div>
|
|
|
|
<table class="table table-bordered table-condensed table-striped">
|
|
<thead>
|
|
<th>{% trans "Number" %}</th>
|
|
<th>{% trans "Date" %}</th>
|
|
<th>{% trans "Description" %}</th>
|
|
<th>{% trans "Rollback" %}</th>
|
|
<th><input type="checkbox" name="select_all" onclick="toggle(this)"></th>
|
|
</thead>
|
|
<tbody>
|
|
{% for snapshot in snapshots %}
|
|
{% if snapshot.description != "current" %}
|
|
<tr>
|
|
<td>
|
|
{{ snapshot.number }}
|
|
{% if snapshot.is_default %}
|
|
<span class="label label-primary">
|
|
{% trans "active" %}
|
|
</span>
|
|
{% endif %}
|
|
</td>
|
|
<td>{{ snapshot.date }}</td>
|
|
<td>{{ snapshot.description }}</td>
|
|
<td>
|
|
<a href="{% url 'snapshot:rollback' snapshot.number %}"
|
|
class="btn btn-default btn-sm" role="button"
|
|
title="{% blocktrans trimmed with number=snapshot.number %}
|
|
Rollback to snapshot #{{ number }}
|
|
{% endblocktrans %}">
|
|
<span class="fa fa-repeat"
|
|
aria-hidden="true"></span>
|
|
</a>
|
|
</td>
|
|
<td>
|
|
{% if not snapshot.is_default %}
|
|
<input type="checkbox" name="snapshot_list" value={{ snapshot.number }} />
|
|
{% endif %}
|
|
</td>
|
|
</tr>
|
|
{% endif %}
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</form>
|
|
{% endblock %}
|
|
|
|
{% block page_js %}
|
|
<script>
|
|
function toggle(source) {
|
|
var checkedState = source.checked;
|
|
checkboxes = document.getElementsByName('snapshot_list');
|
|
jQuery.each(checkboxes, function(i, checkbox) {
|
|
checkbox.checked = checkedState;
|
|
})
|
|
}
|
|
</script>
|
|
{% endblock %}
|
|
|