summaryrefslogtreecommitdiff
path: root/web-ui/app/templates/compose/inline_box.hbs
blob: c9c114ec455fab6e4baff229a327ab14bc3f5dda (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<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 }}

{{> attachments_list }}

<div class="buttons-group columns  compose-view__buttons">
  <button id="send-button" tabindex=6><i class="fa fa-send"></i></button>
  <div class="compose-view__buttons-attachment"><span id="attachment-button" tabindex="6"></span></div>
  <button id="trash-button" tabindex=7>{{t 'trash-button'}}<i class="fa fa-trash-o"></i></button>
  <div id="draft-save-status"></div>
</div>