blob: f2e35d4741778a6302d1afa153907af65ed5bb48 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<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>
<button id="draft-button">{{t 'draft-button'}}<i class="fa fa-pencil"></i></button>
<div id="draft-save-status"></div>
</div>
|