diff options
author | Gabriel Albo <gabriel@albo.com.br> | 2014-10-28 09:56:02 -0200 |
---|---|---|
committer | Gabriel Albo <gabriel@albo.com.br> | 2014-10-28 09:56:12 -0200 |
commit | 557fa0d17ff70a456669b25de69e4e6b180b374a (patch) | |
tree | 78a59a24f25d109512c741d9a2688764f31d414b /web-ui/app/templates/mails | |
parent | 3d1562540bac778ae703b3f1f70133fc4da1ac51 (diff) |
Rearranging tags position inside the mail list
Diffstat (limited to 'web-ui/app/templates/mails')
-rw-r--r-- | web-ui/app/templates/mails/sent.hbs | 14 | ||||
-rw-r--r-- | web-ui/app/templates/mails/single.hbs | 12 |
2 files changed, 14 insertions, 12 deletions
diff --git a/web-ui/app/templates/mails/sent.hbs b/web-ui/app/templates/mails/sent.hbs index 826a66d5..1bd907e4 100644 --- a/web-ui/app/templates/mails/sent.hbs +++ b/web-ui/app/templates/mails/sent.hbs @@ -2,22 +2,24 @@ <input type="checkbox"/> </span> <span> - <a href="/#/{{ tag }}/mail/{{ ident }}"> + <a href="/#/{{ tag }}/mail/{{ ident }}"> <span class="sent-date">{{ header.formattedDate }}</span> <div class="from">{{t 'to:'}} {{#if header.to }}{{ header.to }}{{else}}{{t 'no_recipient'}}{{/if}}</div> <div class="subject-and-tags"> - <ul class="tags"> - {{#each tagsForListView }} - <li class="tag" data-tag="{{this}}">{{ this }}</li> - {{/each }} - </ul> {{#if header.subject }} {{header.subject}} {{else}} {{t 'no_subject'}} {{/if}} </div> + <div class="subject-and-tags"> + <ul class="tags"> + {{#each tagsForListView }} + <li class="tag" data-tag="{{this}}">{{ this }}</li> + {{/each }} + </ul> + </div> </a> </span> diff --git a/web-ui/app/templates/mails/single.hbs b/web-ui/app/templates/mails/single.hbs index 9a054c79..8edcb87c 100644 --- a/web-ui/app/templates/mails/single.hbs +++ b/web-ui/app/templates/mails/single.hbs @@ -7,13 +7,13 @@ <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> + <div class="subject-and-tags"> + <ul class="tags"> + {{#each tagsForListView }} + <li class="tag" data-tag="{{this}}">{{ this }}</li> + {{/each }} + </ul> </a> </span> |