summaryrefslogtreecommitdiff
path: root/web-ui/app/templates/mails
diff options
context:
space:
mode:
authorDuda Dornelles <ddornell@thoughtworks.com>2014-10-28 17:06:13 +0100
committerDuda Dornelles <ddornell@thoughtworks.com>2014-10-28 17:06:18 +0100
commit377e03f7286b0f8f0e44186ced30a4092e1c0d4b (patch)
tree5f5c5fdaba442ea9b1f06eb13d6482739b1f26c5 /web-ui/app/templates/mails
parentef407ef245e9509cc6a956fc5109be6cb3399760 (diff)
Fixing open div tag
Diffstat (limited to 'web-ui/app/templates/mails')
-rw-r--r--web-ui/app/templates/mails/single.hbs29
1 files changed, 15 insertions, 14 deletions
diff --git a/web-ui/app/templates/mails/single.hbs b/web-ui/app/templates/mails/single.hbs
index 8edcb87c..baf6251c 100644
--- a/web-ui/app/templates/mails/single.hbs
+++ b/web-ui/app/templates/mails/single.hbs
@@ -1,19 +1,20 @@
<span>
- <input type="checkbox" {{#if isChecked }}checked="true"{{/if}}/>
+ <input type="checkbox" {{#if isChecked }}checked="true"{{/if}} />
</span>
<span>
-<a href="/#/{{ tag }}/mail/{{ ident }}">
- <span class="received-date">{{ header.formattedDate }}</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>
-</a>
+ <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>