diff options
author | friendica <info@friendica.com> | 2012-05-18 01:38:11 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-05-18 01:38:11 -0700 |
commit | 34b79b4f2b8b9a563717ca60bc55ff868c29df1a (patch) | |
tree | 4c7941b832a162a77e1edf5aca7261aa4f8a1d0e /view | |
parent | 5ecaeb8e5c9fb01ee768df2a650d2187d971b105 (diff) | |
download | volse-hubzilla-34b79b4f2b8b9a563717ca60bc55ff868c29df1a.tar.gz volse-hubzilla-34b79b4f2b8b9a563717ca60bc55ff868c29df1a.tar.bz2 volse-hubzilla-34b79b4f2b8b9a563717ca60bc55ff868c29df1a.zip |
theming for default group selector
Diffstat (limited to 'view')
-rw-r--r-- | view/group_selection.tpl | 5 | ||||
-rw-r--r-- | view/settings.tpl | 1 |
2 files changed, 4 insertions, 2 deletions
diff --git a/view/group_selection.tpl b/view/group_selection.tpl index d09ba676d..3809cb994 100644 --- a/view/group_selection.tpl +++ b/view/group_selection.tpl @@ -1,5 +1,8 @@ -<select name="group-selection" id="group-selection"> +<div class="field custom"> +<label for="group-selection" id="group-selection-lbl">$label</label> +<select name="group-selection" id="group-selection" > {{ for $groups as $group }} <option value="$group.id" {{ if $group.selected }}selected="selected"{{ endif }} >$group.name</option> {{ endfor }} </select> +</div> diff --git a/view/settings.tpl b/view/settings.tpl index e25d67463..556cd3ba3 100644 --- a/view/settings.tpl +++ b/view/settings.tpl @@ -93,7 +93,6 @@ $unkmail <br/> <div id="settings-default-perms-end"></div> -<label name="group-selection-lbl" for="group-selection">$group_lbl_select</label> $group_select |