Mini Shell
<div class="modal-header">
<h3 class="modal-title">{{ lang.t("%s Summary", summary_type) }}</h3>
</div>
<div class="modal-body">
<div ng-show="summary_tpl" ng-include="summary_tpl"></div>
</div>
<div class="modal-footer">
<div style="padding: 5px 0;">
<div class="pretty p-default p-curve p-smooth" style="margin: 0;">
<input type="checkbox" ng-model="summary_gotoqueue" id="gotoqueue" />
<div class="state p-primary"><label for="gotoqueue">{{ lang.t("Go to Queue after I click %s.", summary_type) }}</label></div>
</div>
</div>
<button class="btn btn-primary" ng-click="restore()" ng-show="summary_type == 'Restore'">
<em class="fas fa-sync"></em>
{{ lang.t("Restore Selected Items") }}
</button>
<button class="btn btn-primary" ng-click="download()" ng-show="summary_type == 'Download'">
<em class="fas fa-download"></em>
{{ lang.t("Download Selected Items") }}
</button>
<button class="btn btn-danger" type="button" ng-click="close()">
<em class="fas fa-times"></em>
{{ lang.t("Cancel") }}
</button>
</div>
<script type="text/ng-template" id="itemsList.htm">
<div style="text-align: left; padding: 10px 0;">
<ul style="margin: 0; padding: 0;">
<li ng-repeat="item in items">{{ lang.t("\"%s\" created on %s%s", item.name, lang.d(item.created, 'shorttime'), item.encrypted ? " - " + lang.t("Encrypted") : '')}}</li>
</ul>
</div>
</script>
Zerion Mini Shell 1.0