bloat/templates/postform.tmpl

33 lines
1.8 KiB
Cheetah
Raw 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}}" />
2020-01-01 09:40:47 +00:00
<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">
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>
2021-03-06 22:07:11 +00:00
<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>
2020-01-14 16:57:16 +00:00
{{end}}