bloat/templates/postform.tmpl

50 lines
2.2 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}}">
{{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>
2019-12-26 11:25:29 +00:00
{{if gt (len .Formats) 0}}
<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">
2020-10-19 06:06:41 +00:00
<select id="post-visilibity" name="visibility" {{if .ReplyContext}}{{if .ReplyContext.ForceVisibility}}disabled{{end}}{{end}} 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">
2020-10-19 06:06:41 +00:00
<input type="checkbox" id="nsfw-checkbox" name="is_nsfw" value="on" accesskey="N" title="NSFW (N)">
<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)">
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>
</form>
2020-01-14 16:57:16 +00:00
{{end}}