diff options
author | friendica <info@friendica.com> | 2012-03-20 23:31:12 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-03-20 23:31:12 -0700 |
commit | efd7c14c24aa45878ddc412413ea1593cafcd651 (patch) | |
tree | dd2eff7d2870ee2c292fd39e69cdaa5a0a9b2fdb /view/theme/facepark/group_side.tpl | |
parent | 0dc4c3f48426294dde998d46f47aacd1c9a3f370 (diff) | |
parent | e5c29fcc786cee73c08247824cb87e9ed65a2c36 (diff) | |
download | volse-hubzilla-efd7c14c24aa45878ddc412413ea1593cafcd651.tar.gz volse-hubzilla-efd7c14c24aa45878ddc412413ea1593cafcd651.tar.bz2 volse-hubzilla-efd7c14c24aa45878ddc412413ea1593cafcd651.zip |
Merge pull request #154 from tonybaldwin/master
added theme
Diffstat (limited to 'view/theme/facepark/group_side.tpl')
-rwxr-xr-x | view/theme/facepark/group_side.tpl | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/view/theme/facepark/group_side.tpl b/view/theme/facepark/group_side.tpl new file mode 100755 index 000000000..0353b1d2c --- /dev/null +++ b/view/theme/facepark/group_side.tpl @@ -0,0 +1,28 @@ +<div class="widget" id="group-sidebar"> +<h3>$title</h3> + +<div id="sidebar-group-list"> + <ul id="sidebar-group-ul"> + {{ for $groups as $group }} + <li class="sidebar-group-li"> + {{ if $group.cid }} + <input type="checkbox" + class="{{ if $group.selected }}ticked{{ else }}unticked {{ endif }} action" + onclick="contactgroupChangeMember('$group.id','$group.cid');return true;" + {{ if $group.ismember }}checked="checked"{{ endif }} + /> + {{ endif }} + {{ if $group.edit }} + <a class="groupsideedit" href="$group.edit.href" title="$edittext"><span id="edit-sidebar-group-element-$group.id" class="group-edit-icon iconspacer small-pencil"></span></a> + {{ endif }} + <a id="sidebar-group-element-$group.id" class="sidebar-group-element {{ if $group.selected }}group-selected{{ endif }}" href="$group.href">$group.text</a> + </li> + {{ endfor }} + </ul> + </div> + <div id="sidebar-new-group"> + <a href="group/new">$createtext</a> + </div> +</div> + + |