diff options
Diffstat (limited to 'web-ui/app/templates/mails/trash.hbs')
-rw-r--r-- | web-ui/app/templates/mails/trash.hbs | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/web-ui/app/templates/mails/trash.hbs b/web-ui/app/templates/mails/trash.hbs new file mode 100644 index 00000000..a74c9606 --- /dev/null +++ b/web-ui/app/templates/mails/trash.hbs @@ -0,0 +1,26 @@ +<span> + <input type="checkbox" {{#if isChecked }}checked="true"{{/if}} /> +</span> +<span> + <a href="/#/{{ tag }}/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> |