summaryrefslogtreecommitdiff
path: root/web-ui/app/templates/mails/sent.hbs
diff options
context:
space:
mode:
authorZara Gebru <zgebru@thoughtworks.com>2016-12-02 15:25:23 +0100
committerZara Gebru <zgebru@thoughtworks.com>2016-12-02 15:25:23 +0100
commitb14833fbb56bcd5bff0750c16fd9214009b955be (patch)
treea1ec621dd5f76d756ac59b72a763a34a2c189387 /web-ui/app/templates/mails/sent.hbs
parent688a8b42e8ab7c6d4529b6dda66f40eead07ad02 (diff)
[refactor] move app dir into public dir
Diffstat (limited to 'web-ui/app/templates/mails/sent.hbs')
-rw-r--r--web-ui/app/templates/mails/sent.hbs36
1 files changed, 0 insertions, 36 deletions
diff --git a/web-ui/app/templates/mails/sent.hbs b/web-ui/app/templates/mails/sent.hbs
deleted file mode 100644
index 158b20c8..00000000
--- a/web-ui/app/templates/mails/sent.hbs
+++ /dev/null
@@ -1,36 +0,0 @@
-<div class="mail-list-entry__checkbox">
- <input type="checkbox" {{#if isChecked }}checked="true"{{/if}} />
-</div>
-<a class="mail-list-entry__item" href="/#/{{ currentTag }}/mail/{{ ident }}">
- <div>
- <div class="mail-list-entry__item-from">
- {{t 'to'}}:
- {{#if header.to }}
- {{ header.to }}
- {{else}}
- {{t 'no-recipient'}}
- {{/if}}
- </div> <!-- /.mail-list-entry__item-from -->
-
- <span class="mail-list-entry__item-date">{{ formatDate header.date }}</span> <!-- /.mail-list-entry__item-date -->
- </div>
- <div>
- <div class="mail-list-entry__item-subject">
- {{#if header.subject }}
- {{header.subject}}
- {{else}}
- {{t 'no-subject'}}
- {{/if}}
- </div>
-
- {{#if attachments}}
- <div class="mail-list-entry__item-attachment"><i class="fa fa-paperclip"></i></div>
- {{/if}}
- </div>
- <ul class="mail-list-entry__item-tags">
- {{#each tagsForListView }}
- <li class="mail-list-entry__item-tags-tag" data-tag="{{this}}">{{ this }}</li>
- {{/each }}
- </ul> <!-- /.mail-list-entry__item-tags -->
-</a>
-