diff options
author | Tobias Hößl <tobias@hoessl.eu> | 2012-03-13 18:34:15 +0000 |
---|---|---|
committer | Tobias Hößl <tobias@hoessl.eu> | 2012-03-13 18:34:15 +0000 |
commit | 43430ef561a004aca8a9a28449e51e3885d39a9a (patch) | |
tree | 018927c54c16f68aeae7153c81c404d3e9cbbc7d /view/theme/diabook-blue/group_side.tpl | |
parent | 59766b944c9ea3a45b1d7e8593f7bb5d4a0b8445 (diff) | |
parent | 5a4167646553e589cf9647c0e0d0446e3f5fd672 (diff) | |
download | volse-hubzilla-43430ef561a004aca8a9a28449e51e3885d39a9a.tar.gz volse-hubzilla-43430ef561a004aca8a9a28449e51e3885d39a9a.tar.bz2 volse-hubzilla-43430ef561a004aca8a9a28449e51e3885d39a9a.zip |
Merge branch 'master' of git://github.com/friendica/friendica
Diffstat (limited to 'view/theme/diabook-blue/group_side.tpl')
-rwxr-xr-x | view/theme/diabook-blue/group_side.tpl | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/view/theme/diabook-blue/group_side.tpl b/view/theme/diabook-blue/group_side.tpl new file mode 100755 index 000000000..af183d04d --- /dev/null +++ b/view/theme/diabook-blue/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> + |