Albirew/nyaa-pantsu
Archivé
1
0
Bifurcation 0
Ce dépôt a été archivé le 2022-05-07. Vous pouvez voir ses fichiers ou le cloner, mais pas ouvrir de ticket ou de demandes d'ajout, ni soumettre de changements.
nyaa-pantsu/templates/public_settings.html
2017-05-29 20:13:27 +09:00

31 lignes
1 Kio
HTML

{{define "title"}}{{call $.T "change_language"}}{{end}}
{{define "content"}}
<div class="blockBody">
<hr>
<form role="form" method="POST">
<div class="form-group">
<h3>{{call $.T "language"}}</h3>
<select id="language" name="language" class="form-input">
{{ $currentLanguage := .Language }}
{{ range $tag, $translatedName := $.Languages }}
<option value="{{ $tag }}" {{ if eq $currentLanguage $tag }}selected{{end}}>{{ $translatedName }}</option>
{{ end }}
</select>
<h3>{{call $.T "theme"}}</h3>
<select id="theme-selector" name="theme" class="form-input" onchange="switchThemes()">
<option value="{{$.Theme}}" selected>{{call $.T "theme_select"}}</option>
<option value="g">/g/</option>
<option value="tomorrow">Tomorrow</option>
<option value="">{{call $.T "theme_none"}}</option>
</select>
</br>
</br>
<button type="submit" class="form-input btn">{{call $.T "save_changes"}}</button>
</div>
</form>
<div style="padding-bottom: 1em"></div>
</div>
{{end}}