blob: 4475aeb0fd17ecbab4ee916522480ab9a44267a0 (
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
|
<span>
<input type="checkbox" {{#if isChecked }}checked="true"{{/if}} />
</span>
<span>
<a href="/#/{{ currentTag }}/mail/{{ ident }}">
<span class="received-date">{{ header.formattedDate }}
{{#if attachments}}
<div class="attachment-indicator">
<i class="fa fa-paperclip"></i>
</div>
{{/if}}
</span>
<div class="from">{{#if header.from }}{{ header.from }}{{else}}{{t "you"}}{{/if}}</div>
<div class="subject-and-tags">
<i class="fa fa-trash-o"></i>
{{ header.subject }}
</div>
<div class="subject-and-tags">
<ul class="tags">
{{#each tagsForListView }}
<li class="tag" data-tag="{{this}}">{{ this }}</li>
{{/each }}
</ul>
</div>
</a>
</span>
|