diff options
author | Fabio Comuni <fabrix.xm@gmail.com> | 2011-11-21 12:34:22 +0100 |
---|---|---|
committer | Fabio Comuni <fabrix.xm@gmail.com> | 2011-11-21 12:34:22 +0100 |
commit | a86fd26bd86945fe75b7220e149b8986f88feb01 (patch) | |
tree | 75d3f73e9bcb4fc990bc35b0781d479f40ac9cfb /view/group_side.tpl | |
parent | 590f1d2b25c00fc7bea85cb5de1a4f667ea86af1 (diff) | |
download | volse-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/group_side.tpl')
-rw-r--r-- | view/group_side.tpl | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/view/group_side.tpl b/view/group_side.tpl new file mode 100644 index 000000000..596a8d13f --- /dev/null +++ b/view/group_side.tpl @@ -0,0 +1,29 @@ +<div id="group-sidebar" class="widget"> + <div class="title tool"> + <h3 class="label">$title</h3> + <a href="group/new" title="$createtext" class="action"><span class="icon text s16 add"> $add</span></a> + </div> + + <div id="sidebar-group-list"> + <ul> + {{ for $groups as $group }} + <li class="tool {{ if $group.selected }}selected{{ endif }}"> + <a href="$group.href" class="label"> + $group.text + </a> + {{ if $group.edit }} + <a href="$group.edit.href" class="action"><span class="icon text s10 edit">$group.edit.title</span></a> + {{ endif }} + {{ 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 }} + </li> + {{ endfor }} + </ul> + </div> +</div> + |