PluginProbe ʕ •ᴥ•ʔ
JetBackup – Backup, Restore & Migrate / 3.1.14.17
JetBackup – Backup, Restore & Migrate v3.1.14.17
3.1.23.6 3.1.23.5 3.1.23.3 3.1.22.4 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 / modal / backupNow.htm
backup / public / views / modal Last commit date
backupNow.htm 9 months ago callSupport.htm 9 months ago deleteBackup.htm 9 months ago downloadBackup.htm 9 months ago downloadBackupLog.htm 9 months ago editBackupNotes.htm 9 months ago exportBackup.htm 9 months ago extractBackup.htm 9 months ago fileManager.htm 9 months ago importBackup.htm 9 months ago lockBackup.htm 9 months ago manageBackupJob.htm 9 months ago manageDestination.htm 9 months ago manageSchedule.htm 9 months ago quickStart.htm 9 months ago restoreBackup.htm 9 months ago showExtractedPath.htm 9 months ago viewLog.htm 9 months ago
backupNow.htm
78 lines
1 <div class="modal-header" id="test">
2 <div class="modal-main-title">
3 <h1 class="modal-title fs-5" id="lockBackupLabel">{{ lang.t("Choose a backup job") }}</h1>
4 </div>
5 <button type="button" class="btn-close" ng-click="cancel()" aria-label="Close"></button>
6 </div>
7
8 <div class="modal-body">
9
10 <table class="jb-table table table-hover">
11 <thead>
12 <tr>
13 <th scope="col">
14 <button title="{{ lang.t('Sort by %s.', lang.t('Name')) }}">{{ lang.t('Name') }}</button>
15 </th>
16 <th scope="col">
17 <button title="{{ lang.t('Sort by %s.', lang.t('Destination')) }}">{{ lang.t('Destination') }}</button>
18 </th>
19 <th scope="col">
20 <button title="{{ lang.t('Sort by %s.', lang.t('Type')) }}">{{ lang.t('Type') }}</button>
21 </th>
22 <th scope="col">
23 <button title="{{ lang.t('Sort by %s.', lang.t('Excludes')) }}">{{ lang.t('Excludes') }}</button>
24 </th>
25 <th scope="col">
26 <button title="{{ lang.t('Sort by %s.', lang.t('Action')) }}">{{ lang.t('Action') }}</button>
27 </th>
28 </tr>
29 <!-- Loading Jobs Indicator -->
30 <tr ng-if="initialLoading">
31 <td colspan="8" class="text-center jb-loading-row">
32 <div class="jb-loading-screen">
33 <p class="jb-loading-text">
34 Loading<span class="jb-dots"><span></span><span></span><span></span></span>
35 </p>
36 </div>
37 </td>
38 </tr>
39 <!-- No Jobs Found -->
40 <tr ng-if="!initialLoading && jobs.length === 0 && !loading">
41 <td colspan="8" class="text-center">
42 {{ lang.t("No jobs found.") }}
43 </td>
44 </tr>
45
46 <tr ng-repeat="job in jobs"
47 class="jb-table-tr jobs"
48 ng-click="toggleDetail($index)"
49 ng-class="{'jb-table-tr-selected': isDetailVisible($index)}">
50 <td>{{ job.name }}</td>
51 <td>{{ job.destination_names }}</td>
52 <td>{{ backupContains(job.backup_contains) }}</td>
53 <td> {{ (job.excludes && job.excludes.length > 0) ? 'Yes' : 'No' }}</td>
54 <td>
55 <button
56 ng-click="runNow(job._id)"
57 id=""
58 name="runNow"
59 class="btn jb-full-restore-button w-100 jb-orange-button"
60 type="button"
61 ng-disabled="!job.enabled || isButtonLoading(job._id, 'runNow')">
62 <span class="icon">
63 <i class="fa-sharp fa-light" ng-class="isButtonLoading(job._id, 'runNow') ? 'fa-spinner fa-spin' : 'fa-play-circle'"></i>
64 </span>
65 {{ lang.t("Run Now") }}
66 </button>
67 </td>
68 </tr>
69 </thead>
70 </table>
71 </div>
72
73 <div class="modal-footer">
74 <button class="btn btn-secondary cancel_btn" type="button" ng-click="cancel()">
75 {{ lang.t("Cancel") }}
76 </button>
77
78 </div>