summaryrefslogtreecommitdiff
path: root/web-ui/app/templates/compose
diff options
context:
space:
mode:
authorNavaL <mnandri@thoughtworks.com>2016-01-11 16:55:25 +0100
committerNavaL <mnandri@thoughtworks.com>2016-01-11 16:56:29 +0100
commit058d14143c179d9923eea433fc63094f4f9059aa (patch)
treecef20e046a64cb44ad0d882465411335cf049007 /web-ui/app/templates/compose
parent64106a5d6b589616db5ddd07f383b74c66e0b39d (diff)
merging attachment_list ui and data, and making it into a mixin
Issue #573
Diffstat (limited to 'web-ui/app/templates/compose')
-rw-r--r--web-ui/app/templates/compose/compose_box.hbs22
1 files changed, 14 insertions, 8 deletions
diff --git a/web-ui/app/templates/compose/compose_box.hbs b/web-ui/app/templates/compose/compose_box.hbs
index 1904e275..902221e0 100644
--- a/web-ui/app/templates/compose/compose_box.hbs
+++ b/web-ui/app/templates/compose/compose_box.hbs
@@ -24,20 +24,26 @@
<!-- The file input field used as target for the file upload widget -->
<input id="fileupload" type="file" name="attachment">
</span>
- <br>
- <br>
<!-- The global progress bar -->
<div id="progress" class="progress">
<div class="progress-bar progress-bar-success"></div>
</div>
+
<!-- The container for the uploaded files -->
- <div class="attachmentsAreaWrap">
- <div class="attachmentsArea column large-12">
- <p><strong><i class="fa fa-paperclip"></i> Attachment(s):</strong></p>
- <ul id="attachment-list-item"></ul>
- </div>
+ <div class="attachmentsAreaWrap {{#unless attachments}}hide{{/unless}}">
+ <div class="attachmentsArea column large-12">
+ <p><strong><i class="fa fa-paperclip"></i> Attachment(s):</strong></p>
+ <ul id="attachment-list-item">
+ {{#each attachments }}
+ <li>
+ <a href="/attachment/{{ this.ident }}?encoding={{ this.encoding }}&filename={{ this.name }}">{{ this.name }} ({{ this.size}})
+ <i class="fa fa-arrow-down download-icon"></i></a>
+ </li>
+ {{/each }}
+ </ul>
+ </div>
</div>
-
+
<br>
</div>