mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-05-20 10:34:30 +00:00
Signed-off-by: Prachi Srivastava <prachi.chs.2009@gmail.com> Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org> Reviewed-by: Sunil Mohan Adapa <sunil@medhas.org>
91 lines
3.1 KiB
HTML
91 lines
3.1 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 %}
|
|
{% load static %}
|
|
|
|
{% 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" id="select-all"></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 type="text/javascript" src="{% static 'snapshot/snapshot.js' %}"></script>
|
|
{% endblock %}
|
|
|