File: /home/infowars/askalexjones.com/wp-content/plugins/backup/public/views/modal/downloadBackupLog.htm
<div class="modal-header">
<div class="modal-main-title">
<h1 class="modal-title fs-5" id="downloadBackupLabel">{{ lang.t("Download Backup Log") }}</h1>
</div>
<button type="button" class="btn-close" ng-click="$dismiss()" aria-label="Close"></button>
</div>
<div class="modal-body">
<p ng-bind-html="lang.t('This action will create a download task in the queue, which will download the selected backup log. <br /> Once the download process is complete, the download link will be available in the queue page under the download item, allowing you to securely retrieve the backup log file.')"></p>
<!-- Destination selection (shown only if there are multiple destinations) -->
<div class="row mt-4" ng-if="backupObject.destinations.length > 1">
<div class="col-md-12 mx-auto text-start fs-13">
<label class="form-label">{{ lang.t("This backup log exists on multiple destinations. Please select the destination you want to download from.") }}</label>
<div class="list-group">
<label ng-repeat="dest in backupObject.destinations">
<input type="radio"
name="destinationRadio"
ng-model="selectedDestinationId"
ng-value="dest.id"
ng-change="selectDestination(dest.id)">
{{ lang.t(dest.name || 'Unknown') }}
</label>
</div>
</div>
</div>
<!-- Single destination message -->
<div class="row mt-4" ng-if="backupObject.destinations.length === 1">
<div class="col-md-5 mx-auto text-start">
<p>
{{ lang.t("This backup log has only one destination:") }}
<strong>{{ backupObject.destinations[0].name }}</strong>
</p>
</div>
</div>
</div>
<div class="modal-footer">
<button class="btn btn-secondary cancel_btn" type="button" ng-click="$dismiss()">
{{ lang.t("Cancel") }}
</button>
<button class="btn btn-primary" type="button"
ng-click="queueHandler()"
ng-disabled="(backupObject.destinations.length > 1 && !selectedDestinationId)">
{{ lang.t("Download log") }}
</button>
</div>