Current File : //usr/local/jetapps/var/www/jetbackup5/docroot/app/views_enduser/backupsDownloadSummary.htm |
<div class="row">
<div ng-class="{ 'col-md-6': askForEncryptionKey(), 'col-md-12': !askForEncryptionKey() }">
<h2>{{lang.t("Items To Download")}}</h2>
<div class="row">
<div class="col-md-4" ng-repeat="(contains, items) in list_checked">
<div style="padding: 10px; margin-bottom: 15px; border: 1px solid #ddd;">
<h5 style="margin-bottom: 0; font-size: 14px; font-weight: bold;">{{const.BACKUP_TYPE_ACCOUNT_NAMES[contains]}}</h5>
{{lang.t("%s items", items.length)}}
<span class="fas fa-question-circle" uib-tooltip-template="'itemsList.htm'" tooltip-placement="auto" tooltip-class="backups-tooltip"></span>
<div><a href="" ng-click="removeItems(contains)" style="color: #cc0000"><span class="fas fa-times"></span> {{lang.t("Remove items")}}</a></div>
</div>
</div>
<div class="col-md-4" ng-repeat="contains in noPermissions">
<div style="padding: 10px; margin-bottom: 15px; border: 1px solid #ddd; color: #B6B6B6; background: #f4f4f4;">
<h5 style="margin-bottom: 0; font-size: 14px; font-weight: bold;">{{const.BACKUP_TYPE_ACCOUNT_NAMES[contains]}}</h5>
{{lang.t("%s items", 0)}}
<div>{{lang.t("No Permissions")}}</div>
</div>
</div>
</div>
</div>
<div class="col-md-6" ng-show="askForEncryptionKey()">
<h2>{{lang.t("Backups Private Encryption Key")}}</h2>
<input type="text" class="form-control" ng-model="encryption.key" placeholder="{{lang.t('Paste your backups private encryption key in order to restore the selected items')}}" value="" />
</div>
</div>