2020-01-14 16:57:16 +00:00
|
|
|
{{with .Data}}
|
2019-12-21 08:36:44 +00:00
|
|
|
<form class="post-form" action="/post" method="POST" enctype="multipart/form-data">
|
2020-01-25 10:07:06 +00:00
|
|
|
<input type="hidden" name="csrf_token" value="{{$.Ctx.CSRFToken}}">
|
2019-12-21 13:26:31 +00:00
|
|
|
{{if .ReplyContext}}
|
|
|
|
<input type="hidden" name="reply_to_id" value="{{.ReplyContext.InReplyToID}}" />
|
2020-01-01 09:40:47 +00:00
|
|
|
<label for="post-content" class="post-form-title"> Reply to {{.ReplyContext.InReplyToName}} </label>
|
2019-12-21 08:36:44 +00:00
|
|
|
{{else}}
|
2020-01-01 09:40:47 +00:00
|
|
|
<label for="post-content" class="post-form-title"> New post </label>
|
2019-12-21 08:36:44 +00:00
|
|
|
{{end}}
|
2020-01-30 13:56:29 +00:00
|
|
|
<a class="post-form-emoji-link" href="/emojis" target="_blank" title="emoji list">
|
|
|
|
emoji list
|
2019-12-22 19:43:03 +00:00
|
|
|
</a>
|
2019-12-21 08:36:44 +00:00
|
|
|
<div class="post-form-content-container">
|
2019-12-21 13:26:31 +00:00
|
|
|
<textarea id="post-content" name="content" class="post-content" cols="50" rows="5">{{if .ReplyContext}}{{.ReplyContext.ReplyContent}}{{end}}</textarea>
|
2019-12-21 08:36:44 +00:00
|
|
|
</div>
|
|
|
|
<div>
|
2019-12-26 11:25:29 +00:00
|
|
|
{{if gt (len .Formats) 0}}
|
|
|
|
<span class="post-form-field">
|
|
|
|
<label for="post-format"> Format </label>
|
|
|
|
<select id="post-format" name="format">
|
|
|
|
{{range .Formats}} <option value="{{.Type}}">{{.Name}}</option> {{end}}
|
|
|
|
</select>
|
|
|
|
</span>
|
|
|
|
{{end}}
|
2019-12-22 16:27:49 +00:00
|
|
|
<span class="post-form-field">
|
2019-12-27 08:06:43 +00:00
|
|
|
<label for="post-visilibity"> Scope </label>
|
2019-12-22 16:27:49 +00:00
|
|
|
<select id="post-visilibity" name="visibility">
|
|
|
|
<option value="public" {{if eq .DefaultVisibility "public"}}selected{{end}}>Public</option>
|
|
|
|
<option value="unlisted" {{if eq .DefaultVisibility "unlisted"}}selected{{end}}>Unlisted</option>
|
|
|
|
<option value="private" {{if eq .DefaultVisibility "private"}}selected{{end}}>Private</option>
|
|
|
|
<option value="direct" {{if eq .DefaultVisibility "direct"}}selected{{end}}>Direct</option>
|
|
|
|
</select>
|
|
|
|
</span>
|
|
|
|
<span class="post-form-field">
|
|
|
|
<input type="checkbox" id="nsfw-checkbox" name="is_nsfw" value="on">
|
|
|
|
<label for="nsfw-checkbox"> Is NSFW </label>
|
|
|
|
</span>
|
2019-12-21 13:26:31 +00:00
|
|
|
</div>
|
|
|
|
<div>
|
2019-12-22 16:27:49 +00:00
|
|
|
<span class="post-form-field">
|
|
|
|
<label for ="post-file-picker"> Attachments </label>
|
|
|
|
<input id="post-file-picker" type="file" name="attachments" multiple>
|
|
|
|
</span>
|
2019-12-21 08:36:44 +00:00
|
|
|
</div>
|
|
|
|
<button type="submit"> Post </button>
|
|
|
|
</form>
|
2020-01-14 16:57:16 +00:00
|
|
|
{{end}}
|
2019-12-21 08:36:44 +00:00
|
|
|
|