prepare frontend for trash folder

This commit is contained in:
Usman Nasir
2020-08-04 21:04:44 +05:00
parent 133eb86660
commit 106dfa68aa
2 changed files with 9 additions and 1 deletions

View File

@@ -1007,7 +1007,8 @@ fileManager.controller('fileManagerCtrl', function ($scope, $http, FileUploader,
method: "deleteFolderOrFile",
fileAndFolders: allFilesAndFolders,
domainRandomSeed: domainRandomSeed,
domainName: domainName
domainName: domainName,
skipTrash: $scope.skipTrash
};

View File

@@ -405,11 +405,18 @@
<div class="modal-content">
<div id="htmlEditorLable" class="modal-header">
<h5 class="modal-title" >{% trans "Confirm Deletion!" %} <img ng-hide="deleteLoading" src="{% static 'filemanager/images/loadingSmall.gif' %}"></h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">&times;</span>
</button>
</div>
<div class="modal-body">
<form action="/">
<div class="form-group">
<input ng-model="skipTrash" type="checkbox" value=""> Skip Trash Folder
<small class="form-text text-muted">{% trans "Skip trash and permanently delete this file." %}</small>
</div>
</form>
<p>Are you sure?</p>
</div>
<div class="modal-footer">