diff options
author | Simon L'nu <simon.lnu@gmail.com> | 2012-03-26 02:51:40 -0400 |
---|---|---|
committer | Simon L'nu <simon.lnu@gmail.com> | 2012-03-26 02:51:40 -0400 |
commit | 629a66793c245d39ca47523a6fbc790fae0cbe3b (patch) | |
tree | e1714c8fca95087ff97a844688c40ade60c3b8ef /view/field_themeselect.tpl | |
parent | 2147ffa48734e50c9df1ea91ce100bf5336eacc2 (diff) | |
parent | 37f02424f801b3132b75b39d4132f35025667a75 (diff) | |
download | volse-hubzilla-629a66793c245d39ca47523a6fbc790fae0cbe3b.tar.gz volse-hubzilla-629a66793c245d39ca47523a6fbc790fae0cbe3b.tar.bz2 volse-hubzilla-629a66793c245d39ca47523a6fbc790fae0cbe3b.zip |
Merge branch 'master', remote-tracking branch 'remotes/upstream/master'
* remotes/upstream/master:
small fix
don't include friend suggestions for people with the same name as current contacts. This will remove a lot of #whoaretonybaldwin.
position the theme-preview on settings page
more wordsmithing of the Friendica invitation email
screenshot gallery
theme preview for end users
* master:
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> |