33 lines
1.8 KiB
Cheetah
33 lines
1.8 KiB
Cheetah
{{with .Data}}
|
|
<form class="post-form" action="/post" method="POST" enctype="multipart/form-data" target="_self">
|
|
<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}}" />
|
|
<label for="post-content" class="post-form-title"> Reply to {{.ReplyContext.InReplyToName}} </label>
|
|
{{else}}
|
|
<label for="post-content" class="post-form-title"> New post </label>
|
|
{{end}}
|
|
<a class="post-form-emoji-link" href="/emojis" target="_blank" title="Emoji list (L)" accesskey="L">
|
|
emoji list
|
|
</a>
|
|
<div class="post-form-content-container">
|
|
<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>
|
|
<select id="post-visilibity" name="visibility" {{if .ReplyContext}}{{if .ReplyContext.ForceVisibility}}disabled{{end}}{{end}} accesskey="S" title="Scope (S)">
|
|
<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>
|
|
<label for="nsfw-checkbox"> NSFW </label>
|
|
<input type="checkbox" id="nsfw-checkbox" name="is_nsfw" value="on" accesskey="N" title="NSFW (N)">
|
|
<br>
|
|
<button type="submit" accesskey="P" title="Post (P)"> Post </button>
|
|
<input id="post-file-picker" type="file" name="attachments" multiple accesskey="A" title="Attachments (A)">
|
|
</div>
|
|
</form>
|
|
{{end}}
|
|
|