summaryrefslogtreecommitdiff
path: root/web-ui/app/templates/compose/attachment_item.hbs
blob: 6fefda2fc4cf12158dcdf531bcf7e1e6c7201cf9 (plain)
1
2
3
4
5
6
7
8
9
10
11
<li data-ident="{{ this.ident }}">
    <a href="/attachment/{{ this.ident }}?encoding={{ this.encoding }}&filename={{ this.name }}">
        {{ this.name }} <span class="attachment-size">({{ formatSize this.size}})</span>
        {{#if received}}
            <i class="fa fa-arrow-down download-icon"></i>
        {{/if}}
        {{#if removable}}
            <i class="fa fa-close remove-icon"></i>
        {{/if}}
    </a>
</li>