bloat/templates/postform.tmpl

75 lines
3.7 KiB
Cheetah
Raw Permalink Normal View History

2020-01-14 16:57:16 +00:00
{{with .Data}}
2020-02-23 13:26:39 +00:00
<form class="post-form" action="/post" method="POST" enctype="multipart/form-data" target="_self">
2020-01-25 10:07:06 +00:00
<input type="hidden" name="csrf_token" value="{{$.Ctx.CSRFToken}}">
<input type="hidden" name="referrer" value="{{$.Ctx.Referrer}}">
{{if .ReplyContext}}
<input type="hidden" name="reply_to_id" value="{{.ReplyContext.InReplyToID}}" />
2021-09-05 17:17:59 +00:00
<input type="hidden" name="quickreply" value="{{.ReplyContext.QuickReply}}" />
<label for="post-content" class="post-form-title"> Reply to @{{.ReplyContext.InReplyToName}} </label>
{{else}}
2020-01-01 09:40:47 +00:00
<label for="post-content" class="post-form-title"> New post </label>
{{end}}
2020-10-19 06:06:41 +00:00
<a class="post-form-emoji-link" href="/emojis" target="_blank" title="Emoji list (L)" accesskey="L">
2020-01-30 13:56:29 +00:00
emoji list
2019-12-22 19:43:03 +00:00
</a>
<div class="post-form-content-container">
<input id="post-title" name="title" class="post-title" size="34" title="Add post title" value="{{if .ReplyContext}}{{.ReplyContext.ReplySpoiler}}{{end}}" />
2020-10-19 06:06:41 +00:00
<textarea id="post-content" name="content" class="post-content" cols="34" rows="5" accesskey="E" title="Edit post (E)">{{if .ReplyContext}}{{.ReplyContext.ReplyContent}}{{end}}</textarea>
</div>
<div>
{{if .Formats}}
2019-12-26 11:25:29 +00:00
<span class="post-form-field">
2020-10-19 06:51:23 +00:00
{{$defFormat := .DefaultFormat}}
2020-10-19 06:06:41 +00:00
<select id="post-format" name="format" accesskey="F" title="Format (F)">
2020-10-19 06:51:23 +00:00
{{range .Formats}}
<option value="{{.Type}}" {{if eq $defFormat .Type}}selected{{end}}>{{.Name}}</option>
{{end}}
2019-12-26 11:25:29 +00:00
</select>
</span>
{{end}}
2019-12-22 16:27:49 +00:00
<span class="post-form-field">
2022-10-18 19:32:11 +00:00
<select id="post-visilibity" name="visibility" accesskey="S" title="Scope (S)">
2019-12-22 16:27:49 +00:00
<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">
2021-03-20 05:12:48 +00:00
<input type="checkbox" id="nsfw-checkbox" name="is_nsfw" value="true" accesskey="N" title="NSFW (N)">
2020-10-19 06:06:41 +00:00
<label for="nsfw-checkbox"> NSFW </label>
2019-12-22 16:27:49 +00:00
</span>
</div>
<div>
2019-12-22 16:27:49 +00:00
<span class="post-form-field">
2020-10-19 06:06:41 +00:00
<input id="post-file-picker" type="file" name="attachments" multiple accesskey="A" title="Attachments (A)">
<details><summary> Descriptions for media attachments </summary>
{{GenerateMediaDescrForm | Raw}}
</details>
2019-12-22 16:27:49 +00:00
</span>
</div>
2020-10-19 06:06:41 +00:00
<button type="submit" accesskey="P" title="Post (P)"> Post </button>
2021-01-16 09:29:35 +00:00
<button type="reset" title="Reset"> Reset </button>
<input id="edit-status-id" name="edit-status-id" placeholder="Input Status ID for edit" title="Edit ID">
2023-11-09 23:34:00 +00:00
<input id="lang-code" name="lang-code" placeholder="lang" title="Post language (ISO 639) [en, ru, etc..] Default: none" size="4" value="{{if .ReplyContext}}{{.ReplyContext.ReplyLanguage}}{{end}}">
2023-11-09 20:14:42 +00:00
<input type="number" id="expires-in" name="expires-in" title="Post autodeleted after hour(s)" min="0" value="0" size="4">
2023-11-09 22:27:22 +00:00
<input type="datetime-local" id="scheduled" name="scheduled" step=300 title="Schedule your status (timezone UTC+0)">
<details><summary>Poll</summary>
<div>
<input type="number" id="poll-expires-in" name="poll-expires-in" min="1" value="300">
<label for="poll-expires-in"> Expires in (secs) </label>
</div>
<div>
<input type="checkbox" id="poll-hide-totals" name="poll-hide-totals" value="true">
<label for="poll-hide-totals"> Hide vote counts? </label>
</div>
<div>
<input type="checkbox" id="poll-is-multiple" name="poll-is-multiple" value="true">
<label for="poll-is_multiple "> Allow multiple choice? </label>
</div>
<div>{{GeneratePollOptions | Raw}}</div>
</details>
</form>
2020-01-14 16:57:16 +00:00
{{end}}