ffbbacb84a
* Put the mascot into the cookie as well, major js cleanup * Update en-us.all.json * removed redundant translation
38 lignes
1,5 Kio
HTML
38 lignes
1,5 Kio
HTML
{{define "title"}}{{call $.T "change_language"}}{{end}}
|
|
{{define "content"}}
|
|
<div class="blockBody">
|
|
<hr>
|
|
<form role="form" method="POST">
|
|
{{ block "csrf_field" $ }}{{end}}
|
|
<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="">{{call $.T "theme_select"}}</option>
|
|
<option value="g"{{ if eq $.Theme "g" }} selected{{end}}>/g/</option>
|
|
<option value="tomorrow"{{ if eq $.Theme "tomorrow" }} selected{{end}}>Tomorrow</option>
|
|
<option value=""{{ if eq $.Theme "" }} selected{{end}}>{{call $.T "theme_none"}}</option>
|
|
</select>
|
|
</br>
|
|
<h3>{{call $.T "mascot"}}</h3>
|
|
<select id="mascot-selector" name="mascot" class="form-input">
|
|
{{call $.T "mascot"}}
|
|
<option value="show" {{ if eq $.Mascot "show" }} selected{{end}}>{{call $.T "show"}}</option>
|
|
<option value="hide" {{ if eq $.Mascot "hide" }} selected{{end}}>{{call $.T "hide"}}</option>
|
|
</select>
|
|
</br>
|
|
<p>{{call $.T "cookies"}}</p>
|
|
<button type="submit" class="form-input btn">{{call $.T "save_changes"}}</button>
|
|
</div>
|
|
</form>
|
|
<div style="padding-bottom: 1em"></div>
|
|
</div>
|
|
{{end}}
|
|
|
|
|