0 |
{{with .Data}} |
1 |
{{template "header.tmpl" (WithContext .CommonData $.Ctx)}} |
2 |
<div class="page-title"> Agordoj </div> |
3 |
|
4 |
<form id="settings-form" action="/settings" method="POST"> |
5 |
<input type="hidden" name="csrf_token" value="{{$.Ctx.CSRFToken}}"> |
6 |
<input type="hidden" name="referrer" value="{{$.Ctx.Referrer}}"> |
7 |
{{if .PostFormats}} |
8 |
<div class="settings-form-field"> |
9 |
<label for="post-format"> Default format </label> |
10 |
{{$defFormat := .Settings.DefaultFormat}} |
11 |
<select id="post-format" name="format"> |
12 |
{{range .PostFormats}} |
13 |
<option value="{{.Type}}" {{if eq $defFormat .Type}}selected{{end}}>{{.Name}}</option> |
14 |
{{end}} |
15 |
</select> |
16 |
</div> |
17 |
{{end}} |
18 |
<div class="settings-form-field"> |
19 |
<label for="visibility"> Default scope </label> |
20 |
<select id="visibility" name="visibility"> |
21 |
<option value="public" {{if eq .Settings.DefaultVisibility "public"}}selected{{end}}>Publika</option> |
22 |
<option value="unlisted" {{if eq .Settings.DefaultVisibility "unlisted"}}selected{{end}}>Nepublika</option> |
23 |
<option value="private" {{if eq .Settings.DefaultVisibility "private"}}selected{{end}}>Privata</option> |
24 |
<option value="direct" {{if eq .Settings.DefaultVisibility "direct"}}selected{{end}}>Rekta</option> |
25 |
</select> |
26 |
</div> |
27 |
<div class="settings-form-field"> |
28 |
<label for="notification-interval"> Reenlegado de sciigoj </label> |
29 |
<select id="notification-interval" name="notification_interval"> |
30 |
<option value="0" {{if eq .Settings.NotificationInterval 0}}selected{{end}}>Malŝaltita</option> |
31 |
<option value="30" {{if eq .Settings.NotificationInterval 30}}selected{{end}}>Post 30s</option> |
32 |
<option value="60" {{if eq .Settings.NotificationInterval 60}}selected{{end}}>Post 1m</option> |
33 |
<option value="120" {{if eq .Settings.NotificationInterval 120}}selected{{end}}>Post 2m</option> |
34 |
<option value="300" {{if eq .Settings.NotificationInterval 300}}selected{{end}}>Post 5m</option> |
35 |
<option value="600" {{if eq .Settings.NotificationInterval 600}}selected{{end}}>Post 10m</option> |
36 |
</select> |
37 |
</div> |
38 |
<div class="settings-form-field"> |
39 |
<input id="copy-scope" name="copy_scope" type="checkbox" value="true" {{if .Settings.CopyScope}}checked{{end}}> |
40 |
<label for="copy-scope"> Kopii celon respondante </label> |
41 |
</div> |
42 |
<div class="settings-form-field"> |
43 |
<input id="thread-tab" name="thread_in_new_tab" type="checkbox" value="true" {{if .Settings.ThreadInNewTab}}checked{{end}}> |
44 |
<label for="thread-tab"> Malfermi interparolojn ĉe novaj langentoj </label> |
45 |
</div> |
46 |
<div class="settings-form-field"> |
47 |
<input id="hide-attachments" name="hide_attachments" type="checkbox" value="true" {{if .Settings.HideAttachments}}checked{{end}}> |
48 |
<label for="hide-attachments"> Kaŝi kunsendataj dosieroj </label> |
49 |
</div> |
50 |
<div class="settings-form-field"> |
51 |
<input id="mask-nsfw" name="mask_nsfw" type="checkbox" value="true" {{if .Settings.MaskNSFW}}checked{{end}}> |
52 |
<label for="mask-nsfw"> Kaŝi konsternajn dosierojn </label> |
53 |
</div> |
54 |
<div class="settings-form-field"> |
55 |
<input id="fluoride-mode" name="fluoride_mode" type="checkbox" value="true" {{if .Settings.FluorideMode}}checked{{end}}> |
56 |
<label for="fluoride-mode"> Ŝalti <abbr title="Ŝalti Ĵavoskriptaj kapabloj aldonaj, ekz., ŝati/ripeti sen reenlego de paĝo kaj antaŭmontro de respondoj ĉe afiŝĉena paĝo">F¯ reĝimon</abbr> </label> |
57 |
</div> |
58 |
<div class="settings-form-field"> |
59 |
<input id="anti-dopamine-mode" name="anti_dopamine_mode" type="checkbox" |
60 |
value="true" {{if .Settings.AntiDopamineMode}}checked{{end}}> |
61 |
<label for="anti-dopamine-mode"> Ŝalti <abbr title="Ne nombri ŝatojn/ripetojn/sciigojn kaj ne ricevi ŝatajn/ripetajn/aboniĝajn sciigojn">C₈H₁₁NO₂-kontraŭan reĝimon</abbr> </label> |
62 |
</div> |
63 |
<div class="settings-form-field"> |
64 |
<input id="hide-unsupported-notifs" name="hide_unsupported_notifs" type="checkbox" |
65 |
value="true" {{if .Settings.HideUnsupportedNotifs}}checked{{end}}> |
66 |
<label for="hide-unsupported-notifs"> Kaŝi nesubtenatajn sciigojn </label> |
67 |
</div> |
68 |
<div class="settings-form-field"> |
69 |
<input id="dark-mode" name="dark_mode" type="checkbox" value="true" {{if .Settings.DarkMode}}checked{{end}}> |
70 |
<label for="dark-mode"> Uzi malhelan haŭton </label> |
71 |
</div> |
72 |
<div class="settings-form-field"> |
73 |
<label for="css"> Propra CSS: </label> |
74 |
</div> |
75 |
<div> |
76 |
<textarea id="css" name="css" cols="80" rows="8">{{.Settings.CSS}}</textarea> |
77 |
</div> |
78 |
<button type="submit"> Konservi </button> |
79 |
</form> |
80 |
|
81 |
{{template "footer.tmpl"}} |
82 |
{{end}} |