diff options
author | Simon <simon@kisikew.org> | 2012-04-15 00:20:12 -0700 |
---|---|---|
committer | Simon <simon@kisikew.org> | 2012-04-15 00:20:12 -0700 |
commit | f299749758112361ee6384cd75d11b2c3a57352a (patch) | |
tree | fce1c1b2d497adae72d77e09c6bf005c8900256b /view/theme/dispy/lang_selector.tpl | |
parent | 4572179a24d575df19b96427479dc11f7d137683 (diff) | |
parent | 6a2f0eb475356ebe946a499a7a8bdee487b7ff32 (diff) | |
download | volse-hubzilla-f299749758112361ee6384cd75d11b2c3a57352a.tar.gz volse-hubzilla-f299749758112361ee6384cd75d11b2c3a57352a.tar.bz2 volse-hubzilla-f299749758112361ee6384cd75d11b2c3a57352a.zip |
Merge pull request #237 from simonlnu/master
REALLY fix fpostit this time
Diffstat (limited to 'view/theme/dispy/lang_selector.tpl')
-rw-r--r-- | view/theme/dispy/lang_selector.tpl | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/view/theme/dispy/lang_selector.tpl b/view/theme/dispy/lang_selector.tpl new file mode 100644 index 000000000..e777a0a86 --- /dev/null +++ b/view/theme/dispy/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();" > + {{ for $langs.0 as $v=>$l }} + <option value="$v" {{if $v==$langs.1}}selected="selected"{{endif}}>$l</option> + {{ endfor }} + </select> + </form> +</div> |