blob: 21ab76038b1cbe44383a01d1b2edab85b03e6e97 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<div id="subject-container">
<h4 id="reply-subject">{{subject}}</h4>
<input type="text" value="{{subject}}" style="display: none"/>
</div>
<textarea id="text-box" placeholder="{{t 'Body'}}" tabindex=1>{{body}}</textarea>
<a id="all-recipients" tabindex=2>
<strong>{{t 'To'}}:</strong> {{formatRecipients recipients}}
</a>
{{> recipients }}
<div class="buttons-group columns">
<button id="send-button" tabindex=6><i class="fa fa-send"></i></button>
<button id="trash-button" tabindex=7>{{t 'trash-button'}}<i class="fa fa-trash-o"></i></button>
<div id="draft-save-status"></div>
</div>
|