summaryrefslogtreecommitdiff
path: root/web-ui/app/templates/compose/attachments_list.hbs
blob: 6f34df9ed478eb9614e6d76295460ac6f9e66ff5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<div id="attachment-list" class="buttons-group columns compose-view__attachments">
    <input id="fileupload" type="file" name="attachment" hidden>

    <!-- The container for the uploaded files -->
    <div class="compose-view__attachments-wrapper">
        <ul id="attachment-list-item" class="compose-view__attachments-list">
            {{#each attachments }}
                {{> attachment_item this }}
            {{/each }}
        </ul>
        <ul id="attachment-upload-item" class="compose-view__attachments-list compose-view__attachments-list--upload"></ul>
    </div>

</div>