31 lignes
1 Kio
HTML
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}}
|
|
|
|
|