summaryrefslogtreecommitdiff
path: root/web-ui/app/templates/mails/sent.hbs
blob: 86b6e60751ae3cea4717dfeabfe8c1ad4a986149 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<span>
  <input type="checkbox"/>
</span>
<span>
  <a href="/#/{{ currentTag }}/mail/{{ ident }}">
    <span class="sent-date">{{ formatDate header.date }}
        {{#if attachments}}
            <div class="attachment-indicator">
                <i class="fa fa-paperclip"></i>
            </div>
        {{/if}}
    </span>

      <div class="from">
          {{t 'to:'}}
          {{#if header.to }}
              {{ header.to }}
          {{else}}
              {{t 'no_recipient'}}
          {{/if}}
      </div>
      <div class="subject">
          {{#if header.subject }}
              {{header.subject}}
          {{else}}
              {{t 'no_subject'}}
          {{/if}}
      </div>
      <ul class="tags">
          {{#each tagsForListView }}
              <li class="tags-tag" data-tag="{{this}}">{{ this }}</li>
          {{/each }}
      </ul>
  </a>
</span>