aboutsummaryrefslogtreecommitdiffstats
path: root/view/theme/diabook-red/group_side.tpl
diff options
context:
space:
mode:
authortommy tomson <thomas.bierey@gmx.de>2012-03-30 13:48:34 +0200
committertommy tomson <thomas.bierey@gmx.de>2012-03-30 13:48:34 +0200
commit5ced7f2bc57176f399d8964183bfe453b1b91eff (patch)
treecd6e839d95b415f965a91bcf5b1a877f21cbd26a /view/theme/diabook-red/group_side.tpl
parentbcc58016089c5e5c0e1e5e247d9253b4ac664c2c (diff)
downloadvolse-hubzilla-5ced7f2bc57176f399d8964183bfe453b1b91eff.tar.gz
volse-hubzilla-5ced7f2bc57176f399d8964183bfe453b1b91eff.tar.bz2
volse-hubzilla-5ced7f2bc57176f399d8964183bfe453b1b91eff.zip
add themes diabook-red & diabook-aerith
Diffstat (limited to 'view/theme/diabook-red/group_side.tpl')
-rwxr-xr-xview/theme/diabook-red/group_side.tpl29
1 files changed, 29 insertions, 0 deletions
diff --git a/view/theme/diabook-red/group_side.tpl b/view/theme/diabook-red/group_side.tpl
new file mode 100755
index 000000000..af183d04d
--- /dev/null
+++ b/view/theme/diabook-red/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"></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"></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>
+