aboutsummaryrefslogtreecommitdiffstats
path: root/view/theme/testbubble/group_side.tpl
diff options
context:
space:
mode:
authorFabio Comuni <fabrix.xm@gmail.com>2011-11-21 12:34:22 +0100
committerFabio Comuni <fabrix.xm@gmail.com>2011-11-21 12:34:22 +0100
commita86fd26bd86945fe75b7220e149b8986f88feb01 (patch)
tree75d3f73e9bcb4fc990bc35b0781d479f40ac9cfb /view/theme/testbubble/group_side.tpl
parent590f1d2b25c00fc7bea85cb5de1a4f667ea86af1 (diff)
downloadvolse-hubzilla-a86fd26bd86945fe75b7220e149b8986f88feb01.tar.gz
volse-hubzilla-a86fd26bd86945fe75b7220e149b8986f88feb01.tar.bz2
volse-hubzilla-a86fd26bd86945fe75b7220e149b8986f88feb01.zip
more work on quattro. remove html from php for groups and saved searches widgets.
Diffstat (limited to 'view/theme/testbubble/group_side.tpl')
-rw-r--r--view/theme/testbubble/group_side.tpl28
1 files changed, 28 insertions, 0 deletions
diff --git a/view/theme/testbubble/group_side.tpl b/view/theme/testbubble/group_side.tpl
new file mode 100644
index 000000000..a1fc70a22
--- /dev/null
+++ b/view/theme/testbubble/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"><span class="icon small-pencil"></span></a>
+ {{ endif }}
+ <a 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>
+
+