alps theme: wire up auto-completion in compose
This commit is contained in:
parent
7293b7e8e7
commit
79233fa5cb
1 changed files with 22 additions and 2 deletions
|
@ -20,14 +20,34 @@
|
|||
<form method="post" action="" enctype="multipart/form-data">
|
||||
<input type="hidden" name="in_reply_to" value="{{.Message.InReplyTo}}">
|
||||
|
||||
<label><span>From</span><input type="email" name="from" id="from" value="{{.Message.From}}" /></label>
|
||||
<label><span>To</span><input type="email" name="to" id="to" value="{{.Message.ToString}}" multiple {{ if not .Message.To }} autofocus{{ end }}/></label>
|
||||
<label>
|
||||
<span>From</span>
|
||||
<input type="email" name="from" id="from" value="{{.Message.From}}" />
|
||||
</label>
|
||||
<label>
|
||||
<span>To</span>
|
||||
<input
|
||||
type="email"
|
||||
name="to"
|
||||
id="to"
|
||||
value="{{.Message.ToString}}"
|
||||
multiple
|
||||
list="emails"
|
||||
{{ if not .Message.To }} autofocus{{ end }}
|
||||
/>
|
||||
</label>
|
||||
<label><span>Subject</span><input type="text" name="subject" id="subject" value="{{.Message.Subject}}" {{ if .Message.To }} autofocus{{ end }}/></label>
|
||||
<label><span>Attachments</span><input type="file" name="attachments" id="attachments" multiple></label>
|
||||
<!-- TODO: list of previous attachments (needs design) -->
|
||||
|
||||
<textarea name="text" class="body">{{.Message.Text}}</textarea>
|
||||
|
||||
<datalist id="emails">
|
||||
{{range .Extra.EmailSuggestions}}
|
||||
<option value="{{.}}">
|
||||
{{end}}
|
||||
</datalist>
|
||||
|
||||
<div class="actions">
|
||||
<button type="submit">Send Message</button>
|
||||
<button type="submit" name="save_as_draft">Save as draft</button>
|
||||
|
|
Loading…
Reference in a new issue