themes-community/whovian/templates/lang_selector.tpl
Tobias Diekershoff 5d8a29428f
added some themes by Tony Baldwin
Tony collected these themes 2013 at https://github.com/tonybaldwin/fthemes they are derived from duepuntozero
2022-06-21 09:07:23 +02:00

11 lines
442 B
Smarty

<div id="lang-select-icon" class="icon s22 language" title="{{$title}}" onclick="openClose('language-selector');" ></div>
<div id="language-selector" style="display: none;" >
<form action="#" method="post" >
<select name="system_language" onchange="this.form.submit();" >
{{foreach $langs.0 as $v=>$l}}
<option value="{{$v}}" {{if $v==$langs.1}}selected="selected"{{/if}}>{{$l}}</option>
{{/foreach}}
</select>
</form>
</div>