diff options
Diffstat (limited to 'uploaded/view/templ-upload.html')
| -rw-r--r-- | uploaded/view/templ-upload.html | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/uploaded/view/templ-upload.html b/uploaded/view/templ-upload.html new file mode 100644 index 0000000..4800f91 --- /dev/null +++ b/uploaded/view/templ-upload.html @@ -0,0 +1,33 @@ +<!-- The template to display files available for upload --> +<script id="template-upload" type="text/x-tmpl"> +{% for (var i=0, file; file=o.files[i]; i++) { %} + <tr class="template-upload fade"> + <td> + <span class="preview"></span> + </td> + <td> + <p class="name">{%=file.name%}</p> + <strong class="error text-danger"></strong> + </td> + <td> + <p class="size">Processing...</p> + <div class="progress progress-striped active" role="progressbar" aria-valuemin="0" aria-valuemax="100" aria-valuenow="0"><div class="progress-bar progress-bar-success" style="width:0%;"></div></div> + </td> + <td> + {% if (!i && !o.options.autoUpload) { %} + <button class="btn btn-primary start" disabled> + <i class="glyphicon glyphicon-upload"></i> + <span>Start</span> + </button> + {% } %} + {% if (!i) { %} + <button class="btn btn-warning cancel"> + <i class="glyphicon glyphicon-ban-circle"></i> + <span>Cancel</span> + </button> + {% } %} + </td> + </tr> +{% } %} +</script> + |
