2020-01-14 16:57:16 +00:00
|
|
|
{{with .Data}}
|
|
|
|
{{template "header.tmpl" (WithContext .HeaderData $.Ctx)}}
|
|
|
|
{{template "navigation.tmpl" (WithContext .NavbarData $.Ctx)}}
|
2019-12-27 08:06:43 +00:00
|
|
|
<div class="page-title"> Settings </div>
|
|
|
|
|
|
|
|
<form id="settings-form" action="/settings" method="POST">
|
2020-01-25 10:07:06 +00:00
|
|
|
<input type="hidden" name="csrf_token" value="{{$.Ctx.CSRFToken}}">
|
2019-12-27 08:06:43 +00:00
|
|
|
<div class="settings-form-field">
|
|
|
|
<label for="visibility"> Default scope </label>
|
|
|
|
<select id="visibility" name="visibility">
|
|
|
|
<option value="public" {{if eq .Settings.DefaultVisibility "public"}}selected{{end}}>Public</option>
|
|
|
|
<option value="unlisted" {{if eq .Settings.DefaultVisibility "unlisted"}}selected{{end}}>Unlisted</option>
|
|
|
|
<option value="private" {{if eq .Settings.DefaultVisibility "private"}}selected{{end}}>Private</option>
|
|
|
|
<option value="direct" {{if eq .Settings.DefaultVisibility "direct"}}selected{{end}}>Direct</option>
|
|
|
|
</select>
|
|
|
|
</div>
|
|
|
|
<div class="settings-form-field">
|
|
|
|
<input id="copy-scope" name="copy_scope" type="checkbox" value="true" {{if .Settings.CopyScope}}checked{{end}}>
|
|
|
|
<label for="copy-scope"> Copy scope when replying </label>
|
|
|
|
</div>
|
2019-12-29 11:32:24 +00:00
|
|
|
<div class="settings-form-field">
|
|
|
|
<input id="thread-tab" name="thread_in_new_tab" type="checkbox" value="true" {{if .Settings.ThreadInNewTab}}checked{{end}}>
|
|
|
|
<label for="thread-tab"> Open threads in new tab from timeline </label>
|
|
|
|
</div>
|
2019-12-31 11:00:21 +00:00
|
|
|
<div class="settings-form-field">
|
|
|
|
<input id="mask-nsfw" name="mask_nsfw" type="checkbox" value="true" {{if .Settings.MaskNSFW}}checked{{end}}>
|
|
|
|
<label for="mask-nsfw"> Mask NSFW Attachments </label>
|
|
|
|
</div>
|
2020-01-08 18:16:06 +00:00
|
|
|
<div class="settings-form-field">
|
|
|
|
<input id="fluoride-mode" name="fluoride_mode" type="checkbox" value="true" {{if .Settings.FluorideMode}}checked{{end}}>
|
|
|
|
<label for="fluoride-mode"> Enable Fluoride Mode </label>
|
|
|
|
</div>
|
2020-01-12 17:16:57 +00:00
|
|
|
<div class="settings-form-field">
|
|
|
|
<input id="dark-mode" name="dark_mode" type="checkbox" value="true" {{if .Settings.DarkMode}}checked{{end}}>
|
|
|
|
<label for="dark-mode"> Use dark theme </label>
|
|
|
|
</div>
|
2019-12-27 08:06:43 +00:00
|
|
|
<button type="submit"> Save </button>
|
|
|
|
</form>
|
|
|
|
|
|
|
|
{{template "footer.tmpl"}}
|
2020-01-14 16:57:16 +00:00
|
|
|
{{end}}
|