diff options
author | friendica <info@friendica.com> | 2012-03-25 19:05:14 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-03-25 19:05:14 -0700 |
commit | c88674aaf23ede573f19a2b363dfccf9627a5dcb (patch) | |
tree | 801fced677c7af3dd202919a2a747175a3c9a232 /view/field_themeselect.tpl | |
parent | 7ab117fd31c31cba4880cfcc63fc940531850455 (diff) | |
download | volse-hubzilla-c88674aaf23ede573f19a2b363dfccf9627a5dcb.tar.gz volse-hubzilla-c88674aaf23ede573f19a2b363dfccf9627a5dcb.tar.bz2 volse-hubzilla-c88674aaf23ede573f19a2b363dfccf9627a5dcb.zip |
theme preview for end users
Diffstat (limited to 'view/field_themeselect.tpl')
-rwxr-xr-x | view/field_themeselect.tpl | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/view/field_themeselect.tpl b/view/field_themeselect.tpl new file mode 100755 index 000000000..f9f99492c --- /dev/null +++ b/view/field_themeselect.tpl @@ -0,0 +1,9 @@ + + <div class='field select'> + <label for='id_$field.0'>$field.1</label> + <select name='$field.0' id='id_$field.0' onchange="previewTheme(this);" > + {{ for $field.4 as $opt=>$val }}<option value="$opt" {{ if $opt==$field.2 }}selected="selected"{{ endif }}>$val</option>{{ endfor }} + </select> + <span class='field_help'>$field.3</span> + <div id="theme-preview"></div> + </div> |