diff options
author | Tobias Diekershoff <tobias.diekershoff@gmx.net> | 2012-03-26 11:28:38 +0200 |
---|---|---|
committer | Tobias Diekershoff <tobias.diekershoff@gmx.net> | 2012-03-26 11:28:38 +0200 |
commit | 8ded404aaa0d2e89457635d0b67cf9888443d55c (patch) | |
tree | 0355d2ea82c247d36d1f787aa484d0c6cd6cbb04 /view/theme/quattro-green/group_side.tpl | |
parent | 63fa5f6c7706bd150099821e9bf8826cb1cf4dcd (diff) | |
download | volse-hubzilla-8ded404aaa0d2e89457635d0b67cf9888443d55c.tar.gz volse-hubzilla-8ded404aaa0d2e89457635d0b67cf9888443d55c.tar.bz2 volse-hubzilla-8ded404aaa0d2e89457635d0b67cf9888443d55c.zip |
added quaddro templates to quaddro-green
Diffstat (limited to 'view/theme/quattro-green/group_side.tpl')
-rwxr-xr-x | view/theme/quattro-green/group_side.tpl | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/view/theme/quattro-green/group_side.tpl b/view/theme/quattro-green/group_side.tpl new file mode 100755 index 000000000..596a8d13f --- /dev/null +++ b/view/theme/quattro-green/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> + |