1cf95af41e
This causes the mailbox to automatically reload the page every 60 seconds, without JavaScript. This also updates the base template data to include the full URL, and replaces the earlier "Path" field with a pre-split array of path components, which is more immediately useful to most templates given the limitations of string munging with text/template primitives.
91 lines
2.2 KiB
HTML
91 lines
2.2 KiB
HTML
{{template "head.html" .Global}}
|
|
{{template "nav.html" .Global}}
|
|
|
|
<div class="container-fluid">
|
|
<div class="row">
|
|
<div class="col-md-12 header-tabbed">
|
|
<h2>Compose</h2>
|
|
<ul class="nav nav-tabs">
|
|
<li class="nav-item">
|
|
<a class="nav-link" href="/mailbox/INBOX" >Messages</a>
|
|
</li>
|
|
<li class="nav-item">
|
|
<a class="nav-link active" href="/compose">Compose</a>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="container">
|
|
<form method="post" class="col-md-12" enctype="multipart/form-data">
|
|
<input type="hidden" name="in_reply_to" value="{{.Message.InReplyTo}}">
|
|
<div class="row">
|
|
<div class="form-group col-md-6">
|
|
<label for="from">From</label>
|
|
<input
|
|
type="email"
|
|
name="from"
|
|
id="from"
|
|
class="form-control"
|
|
value="{{.Message.From}}" />
|
|
</div>
|
|
<div class="form-group col-md-6">
|
|
<label for="to">To</label>
|
|
<input
|
|
type="email"
|
|
name="to"
|
|
id="to"
|
|
class="form-control"
|
|
value="{{.Message.ToString}}"
|
|
list="emails"
|
|
multiple
|
|
{{ if not .Message.To }}
|
|
autofocus
|
|
{{ end }} />
|
|
</div>
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="subject">Subject</label>
|
|
<input
|
|
type="text"
|
|
name="subject"
|
|
id="subject"
|
|
class="form-control"
|
|
value="{{.Message.Subject}}"
|
|
{{ if .Message.To }}
|
|
autofocus
|
|
{{ end }} />
|
|
</div>
|
|
<div class="form-group">
|
|
<textarea
|
|
name="text"
|
|
class="form-control"
|
|
cols="80"
|
|
rows="20"
|
|
>{{.Message.Text}}</textarea>
|
|
</div>
|
|
<div class="pull-right">
|
|
<a
|
|
href="/mailbox/INBOX"
|
|
class="btn btn-default"
|
|
>Cancel</a>
|
|
<button
|
|
type="submit"
|
|
name="save_as_draft"
|
|
class="btn btn-default"
|
|
>Save as draft</button>
|
|
<button
|
|
type="submit"
|
|
class="btn btn-primary"
|
|
>Send email</button>
|
|
</div>
|
|
|
|
<datalist id="emails">
|
|
{{range .Extra.EmailSuggestions}}
|
|
<option value="{{.}}">
|
|
{{end}}
|
|
</datalist>
|
|
</form>
|
|
</div>
|
|
|
|
{{template "foot.html"}}
|