summaryrefslogtreecommitdiffstats
path: root/modules-available/dozmod/templates/images-orphaned.html
diff options
context:
space:
mode:
authorChristian Hofmaier2020-10-13 18:24:41 +0200
committerChristian Hofmaier2020-10-13 18:24:41 +0200
commit6ef48b756c51e33f64f74fc9fdd96c9e6f4ff1c0 (patch)
tree1b25330880065efa168cb5c69773d545df7cfc01 /modules-available/dozmod/templates/images-orphaned.html
parent[locationinfo] add forward link to location module (diff)
parent[dozmod] Implement deleting orphaned files from vm store (diff)
downloadslx-admin-6ef48b756c51e33f64f74fc9fdd96c9e6f4ff1c0.tar.gz
slx-admin-6ef48b756c51e33f64f74fc9fdd96c9e6f4ff1c0.tar.xz
slx-admin-6ef48b756c51e33f64f74fc9fdd96c9e6f4ff1c0.zip
Merge branch 'master' of git.openslx.org:openslx-ng/slx-admin
merge branch 'master'
Diffstat (limited to 'modules-available/dozmod/templates/images-orphaned.html')
-rw-r--r--modules-available/dozmod/templates/images-orphaned.html25
1 files changed, 25 insertions, 0 deletions
diff --git a/modules-available/dozmod/templates/images-orphaned.html b/modules-available/dozmod/templates/images-orphaned.html
new file mode 100644
index 00000000..d1b74a42
--- /dev/null
+++ b/modules-available/dozmod/templates/images-orphaned.html
@@ -0,0 +1,25 @@
+<table class="table">
+ <thead>
+ <tr>
+ <th>{{lang_fileName}}</th>
+ <th>{{lang_status}}</th>
+ </tr>
+ </thead>
+ <tbody>
+ {{#files}}
+ <tr>
+ <td>{{file}}</td>
+ <td>{{status}}</td>
+ </tr>
+ {{/files}}
+ </tbody>
+</table>
+
+{{#show_delete}}
+<button {{perm.orphaned.delete.disabled}} id="orphan-delete"
+ class="btn btn-danger pull-right" type="button"
+ data-confirm="#confirm-orphan-delete">
+ <span class="glyphicon glyphicon-search"></span>
+ {{lang_orphanDeleteButton}}
+</button>
+{{/show_delete}} \ No newline at end of file