FreedomBox/plinth/modules/backups/templates/backups_restore.html
Sunil Mohan Adapa 1b5a10a628
backups: Remove custom handling of progress on the restore button
Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org>
Reviewed-by: Veiko Aasa <veiko17@disroot.org>
2020-06-29 10:08:47 +03:00

36 lines
680 B
HTML

{% extends "base.html" %}
{% comment %}
# SPDX-License-Identifier: AGPL-3.0-or-later
{% endcomment %}
{% load bootstrap %}
{% load i18n %}
{% load static %}
{% block content %}
<h2>{{ title }}</h2>
{% if name %}
<p>
{% trans 'Restore data from' %} {{ name }}
</p>
{% endif %}
<p>
<form class="form" method="post">
{% csrf_token %}
{{ form|bootstrap }}
<input id="restore_btn" type="submit"
class="btn btn-primary"
value="{% trans 'Restore' %}" />
</form>
</p>
{% endblock %}
{% block page_js %}
<script type="text/javascript" src="{% static 'backups/select_all.js' %}"></script>
{% endblock %}