mirror of
https://github.com/usmannasir/cyberpanel.git
synced 2026-01-29 18:59:04 +01:00
135 lines
6.2 KiB
HTML
Executable File
135 lines
6.2 KiB
HTML
Executable File
{% extends "baseTemplate/index.html" %}
|
|
{% load i18n %}
|
|
{% block title %}{% trans "Restore Remote Incremental Backups" %}{% endblock %}
|
|
{% block content %}
|
|
|
|
{% load static %}
|
|
|
|
{% get_current_language as LANGUAGE_CODE %}
|
|
<!-- Current language: {{ LANGUAGE_CODE }} -->
|
|
|
|
<div class="container">
|
|
<div id="page-title">
|
|
<h2>{% trans "Restore Remote Incremental Backups" %} - <a target="_blank"
|
|
href="https://cyberpanel.net/docs/3-restore-backups-from-remote-destination/"
|
|
style="height: 23px;line-height: 21px;"
|
|
class="btn btn-border btn-alt border-red btn-link font-red"
|
|
title=""><span>{% trans "Backup Docs" %}</span></a>
|
|
</h2>
|
|
<p>{% trans "This page can be used to restore remote incremental backups for your websites." %}</p>
|
|
</div>
|
|
|
|
<div ng-controller="restoreRemoteBackupsInc" class="panel">
|
|
<div class="panel-body">
|
|
<h3 class="title-hero">
|
|
{% trans "Back up Website" %} <img ng-hide="cyberpanelLoading"
|
|
src="{% static 'images/loading.gif' %}">
|
|
</h3>
|
|
<div class="example-box-wrapper">
|
|
|
|
|
|
<form action="/" class="form-horizontal bordered-row">
|
|
|
|
|
|
<div class="form-group">
|
|
<label class="col-sm-3 control-label">{% trans "Select Website" %} </label>
|
|
<div class="col-sm-6">
|
|
<select ng-change="showThings()" ng-model="websiteToBeBacked" class="form-control">
|
|
{% for items in websiteList %}
|
|
<option>{{ items }}</option>
|
|
{% endfor %}
|
|
</select>
|
|
</div>
|
|
</div>
|
|
|
|
<div ng-hide="destination" class="form-group">
|
|
<label class="col-sm-3 control-label">{% trans "Destination" %}</label>
|
|
<div class="col-sm-6">
|
|
<select ng-model="backupDestinations"
|
|
class="form-control">
|
|
{% for items in destinations %}
|
|
<option>{{ items }}</option>
|
|
{% endfor %}
|
|
</select>
|
|
</div>
|
|
</div>
|
|
|
|
<div ng-hide="destination" class="form-group">
|
|
<label class="col-sm-3 control-label">{% trans "Encrypted Backup Password" %}</label>
|
|
<div class="col-sm-6">
|
|
<input type="password" name="password" class="form-control" ng-model="password"
|
|
required>
|
|
</div>
|
|
</div>
|
|
|
|
<div ng-hide="destination" class="form-group">
|
|
<label class="col-sm-3 control-label"></label>
|
|
<div class="col-sm-4">
|
|
<button type="button" ng-click="fetchDetails()"
|
|
class="btn btn-primary btn-lg btn-block">{% trans "Fetch Restore Points" %} <img
|
|
ng-hide="cyberpanelLoading"
|
|
src="{% static 'images/loading.gif' %}"></button>
|
|
</div>
|
|
</div>
|
|
|
|
<!---- if Back up is running ----->
|
|
|
|
<div ng-hide="runningBackup" class="form-group">
|
|
<div class="col-sm-12">
|
|
<div class="col-sm-12">
|
|
<textarea ng-model="status" class="form-control" rows="10"></textarea>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<!---- if Back up is running------>
|
|
|
|
<!------ List of records --------------->
|
|
|
|
<div class="form-group">
|
|
|
|
<div class="col-sm-12">
|
|
|
|
<table class="table">
|
|
<thead>
|
|
<tr>
|
|
<th>{% trans "Snapshot ID" %}</th>
|
|
<th>{% trans "Date" %}</th>
|
|
<th>{% trans "Host" %}</th>
|
|
<th>{% trans "Path" %}</th>
|
|
<th>{% trans "Actions" %}</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr ng-repeat="record in records track by $index">
|
|
<td ng-bind="record.id"></td>
|
|
<td ng-bind="record.date"></td>
|
|
<td ng-bind="record.host"></td>
|
|
<td ng-bind="record.path"></td>
|
|
<td>
|
|
<a ng-click="restorePoint(record.id, record.path)"
|
|
class="btn btn-border btn-alt border-green btn-link font-green"
|
|
title=""><span>Restore</span></a>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
|
|
<!------ List of records --------------->
|
|
|
|
|
|
</form>
|
|
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
{% endblock %} |