PluginProbe ʕ •ᴥ•ʔ
JetBackup – Backup, Restore & Migrate / 3.1.22.3
JetBackup – Backup, Restore & Migrate v3.1.22.3
3.1.22.3 1.4.3 1.4.4 1.4.5 1.4.6 1.4.7 1.4.8 1.4.8.1 1.4.9 1.5.0 1.5.1 1.5.1.1 1.5.2 1.5.3 1.5.4 1.5.5 1.5.6 1.5.7 1.5.8 1.6.0 1.6.10 1.6.11 1.6.12 1.6.13 1.6.15 1.6.5.1 1.6.8.8 1.6.9 1.6.9.1 2.0.3 2.0.4 2.0.5 2.0.6 2.0.7.5 2.0.8.7 2.0.9.11 2.0.9.14 2.0.9.15 2.0.9.6 2.0.9.7 2.0.9.9 3.1.10.7 3.1.11.1 3.1.12.3 3.1.13.4 3.1.14.17 3.1.15.4 3.1.16.1 3.1.17.5 3.1.18.10 3.1.18.8 3.1.18.9 3.1.19.8 3.1.20.3 3.1.21.3 3.1.7.9 3.1.9.2 trunk 1.1.90 1.1.91 1.2.0 1.2.5 1.2.6 1.2.7 1.2.8 1.2.9 1.3.0 1.3.1 1.3.2 1.3.3 1.3.4 1.3.6 1.3.7 1.3.8 1.3.9 1.4.0 1.4.1 1.4.2
backup / public / views / settings.htm
backup / public / views Last commit date
destinations 1 year ago modal 10 months ago settings 3 days ago 404.htm 1 year ago alerts.htm 1 year ago backups.htm 1 year ago dashboard.htm 1 year ago destinations.htm 9 months ago downloads.htm 1 year ago jobs.htm 1 year ago main.htm 1 year ago mfa.htm 1 year ago queue.htm 1 year ago schedules.htm 1 year ago settings.htm 1 year ago system.htm 11 months ago
settings.htm
56 lines
1 <div ng-controller="settings" class="jb-list-backups-container jb-grey-0">
2
3 <div class="row" navigation active="menuItem"></div>
4
5 <div class="row rounded-4 jb-white-0 jb-panel-row shadow-lg">
6
7 <div class="jb-main-title rounded-3">
8 {{ lang.t("Settings") }}
9 </div>
10 <div class="jb-title-description">
11 <p> {{ lang.t("Customize your JetBackup Settings and Preferences to fit your needs and polices. Adjust configurations to optimize performance and ensure your backup process runs smoothly.") }}</p>
12 </div>
13
14 <h2 class="nav-tab-wrapper">
15 <ul>
16 <li class="nav-tab" ng-repeat="section in sections" ng-class="{ 'tab-current': currentSection._id == section._id }">
17 <a href="" ng-click="changeSection(section)">
18 <span>{{ section.name }}</span>
19 </a>
20 </li>
21 </ul>
22 </h2>
23
24 <div class="snake-line" ng-class="{ 'loading': isLoadingSection }"></div>
25
26 <!-- Section content -->
27 <div ng-if="!isLoadingSection">
28 <div ng-include="sectionPage"></div>
29 </div>
30
31 <div ng-if="isLoadingSection" class="jb-loading-screen">
32 <p class="jb-loading-text">
33 Loading<span class="jb-dots"><span></span><span></span><span></span></span>
34 </p>
35 </div>
36
37
38 <hr />
39 <div class="d-flex justify-content-center mt-3">
40 <div class="d-flex justify-content-center mt-3">
41 <button
42 id="settings_save"
43 type="submit"
44 class="btn btn-primary apply_btn"
45 ng-click="ok()"
46 ng-show="!isLoadingSection"
47 ng-disabled="loading">
48 <span class="spinner-border spinner-border-sm me-2" role="status" aria-hidden="true" ng-show="loading"></span>
49 {{ lang.t("Save") }}
50 </button>
51 </div>
52 </div>
53
54 </div>
55
56 </div>