diff options
author | Fabio Comuni <fabrix.xm@gmail.com> | 2012-03-26 09:09:14 +0200 |
---|---|---|
committer | Fabio Comuni <fabrix.xm@gmail.com> | 2012-03-26 09:09:14 +0200 |
commit | 51d419e159de93c6ca7efaa1f1f69dc36eb3cb26 (patch) | |
tree | b89fa1c676e42fbfa8c1ed23e5410ef729db17f7 /view/theme/quattro/group_side.tpl | |
parent | 5b3fe48ec675541fb7bbc3689229056ae840ac14 (diff) | |
download | volse-hubzilla-51d419e159de93c6ca7efaa1f1f69dc36eb3cb26.tar.gz volse-hubzilla-51d419e159de93c6ca7efaa1f1f69dc36eb3cb26.tar.bz2 volse-hubzilla-51d419e159de93c6ca7efaa1f1f69dc36eb3cb26.zip |
themes: use duepuntozero tpls as default
Diffstat (limited to 'view/theme/quattro/group_side.tpl')
-rwxr-xr-x | view/theme/quattro/group_side.tpl | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/view/theme/quattro/group_side.tpl b/view/theme/quattro/group_side.tpl new file mode 100755 index 000000000..596a8d13f --- /dev/null +++ b/view/theme/quattro/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> + |