blob: baf6251cf07078256cb063568091a38a2ee497d4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<span>
<input type="checkbox" {{#if isChecked }}checked="true"{{/if}} />
</span>
<span>
<a href="/#/{{ tag }}/mail/{{ ident }}">
<span class="received-date">{{ header.formattedDate }}</span>
<div class="from">{{#if header.from }}{{ header.from }}{{else}}{{t "you"}}{{/if}}</div>
<div class="subject-and-tags">
{{ 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>
|