aboutsummaryrefslogtreecommitdiffstats
path: root/view/theme/redbasic/tpl/smarty3/lang_selector.tpl
diff options
context:
space:
mode:
Diffstat (limited to 'view/theme/redbasic/tpl/smarty3/lang_selector.tpl')
-rw-r--r--view/theme/redbasic/tpl/smarty3/lang_selector.tpl10
1 files changed, 10 insertions, 0 deletions
diff --git a/view/theme/redbasic/tpl/smarty3/lang_selector.tpl b/view/theme/redbasic/tpl/smarty3/lang_selector.tpl
new file mode 100644
index 000000000..945cbf51e
--- /dev/null
+++ b/view/theme/redbasic/tpl/smarty3/lang_selector.tpl
@@ -0,0 +1,10 @@
+<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>