blob: 9a054c794df3f364a7cd77aa6a656521521eed85 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<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">
<ul class="tags">
{{#each tagsForListView }}
<li class="tag" data-tag="{{this}}">{{ this }}</li>
{{/each }}
</ul>
{{ header.subject }}
</div>
</a>
</span>
|