summaryrefslogtreecommitdiff
path: root/uploaded/download-templ.html
diff options
context:
space:
mode:
authorroot2014-12-01 17:24:29 +0100
committerroot2014-12-01 17:24:29 +0100
commit9d9d9b2ad320ffb9a4172f9510f82fe32585594b (patch)
tree149ccfeacac7c9c7b2b616649a376332583e0dbf /uploaded/download-templ.html
parentb435ec462e0f39457e14d81750f07781db97cb91 (diff)
downloadtools.iamfabulous.de-9d9d9b2ad320ffb9a4172f9510f82fe32585594b.tar.gz
moved view in own subfolder
Diffstat (limited to 'uploaded/download-templ.html')
-rw-r--r--uploaded/download-templ.html44
1 files changed, 0 insertions, 44 deletions
diff --git a/uploaded/download-templ.html b/uploaded/download-templ.html
deleted file mode 100644
index 5a7041d..0000000
--- a/uploaded/download-templ.html
+++ /dev/null
@@ -1,44 +0,0 @@
-<!-- The template to display files available for download -->
-<script id="template-download" type="text/x-tmpl">
-{% for (var i=0, file; file=o.files[i]; i++) { %}
- <tr class="template-download fade">
- <td>
- <span class="preview">
- {% if (file.thumbnailUrl) { %}
- <a href="{%=file.url%}" title="{%=file.name%}" download="{%=file.name%}" data-gallery><img src="{%=file.thumbnailUrl%}"></a>
- {% } %}
- </span>
- </td>
- <td>
- <p class="name">
- {% if (file.url) { %}
- <a href="{%=file.url%}" title="{%=file.name%}" download="{%=file.name%}" {%=file.thumbnailUrl?'data-gallery':''%}>{%=file.name%}</a>
- {% } else { %}
- <span>{%=file.name%}</span>
- {% } %}
- </p>
- {% if (file.error) { %}
- <div><span class="label label-danger">Error</span> {%=file.error%}</div>
- {% } %}
- </td>
- <td>
- <span class="size">{%=o.formatFileSize(file.size)%}</span>
- </td>
- <td>
- {% if (file.deleteUrl) { %}
- <button class="btn btn-danger delete" data-type="{%=file.deleteType%}" data-url="{%=file.deleteUrl%}"{% if (file.deleteWithCredentials) { %} data-xhr-fields='{"withCredentials":true}'{% } %}>
- <i class="glyphicon glyphicon-trash"></i>
- <span>Delete</span>
- </button>
- <input type="checkbox" name="delete" value="1" class="toggle">
- {% } else { %}
- <button class="btn btn-warning cancel">
- <i class="glyphicon glyphicon-ban-circle"></i>
- <span>Cancel</span>
- </button>
- {% } %}
- </td>
- </tr>
-{% } %}
-</script>
-