aboutsummaryrefslogtreecommitdiff
path: root/templates/postform.tmpl
blob: 5ee1a51224ec65e12a69201c0002e966380654f6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{{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}}">
	<input type="hidden" name="quickreply" value="{{.ReplyContext.QuickReply}}">
	<label for="post-content">Reply to @{{.ReplyContext.InReplyToName}}</label>
	{{else}}
	<label for="post-content">New post</label>
	{{end}}
	<a class="emoji-link" href="/emojis" target="_blank" title="Emoji list (L)" accesskey="L">emoji list</a>
	<div class="form-field-s">
		<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 class="form-field-s">
		{{if .Formats}}
			{{$defFormat := .DefaultFormat}}
			<select id="post-format" name="format" accesskey="F" title="Format (F)">
				{{range .Formats}} 
					<option value="{{.Type}}" {{if eq $defFormat .Type}}selected{{end}}>{{.Name}}</option> 
				{{end}}
			</select>
		{{end}}
		<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>
		<input type="checkbox" id="nsfw-checkbox" name="is_nsfw" value="true" accesskey="N" title="NSFW (N)">
		<label for="nsfw-checkbox"> NSFW </label>
	</div>
	<div class="form-field-s">
		<input id="post-file-picker" type="file" name="attachments" multiple accesskey="A" title="Attachments (A)">
	</div>
	<div class="form-field-s">
		<button type="submit" accesskey="P" title="Post (P)"> Post </button>
		<button type="reset" title="Reset"> Reset </button>
	</div>
</form>
{{end}}