diff options
author | Simon L'nu <simon.lnu@gmail.com> | 2012-03-13 00:25:20 -0400 |
---|---|---|
committer | Simon L'nu <simon.lnu@gmail.com> | 2012-03-13 00:25:20 -0400 |
commit | 203fa94e1794d076894f8985bd60622784aa9156 (patch) | |
tree | 0c49a617c83d11e645b6df2bea5bfcc1ccf7d093 /view/theme/diabook/group_side.tpl | |
parent | 5a1e2c32fe4a36b1dbbaa6b224c8ced6cb3358c4 (diff) | |
parent | bf7425c591de360a97c37544f777d7d69791420c (diff) | |
download | volse-hubzilla-203fa94e1794d076894f8985bd60622784aa9156.tar.gz volse-hubzilla-203fa94e1794d076894f8985bd60622784aa9156.tar.bz2 volse-hubzilla-203fa94e1794d076894f8985bd60622784aa9156.zip |
Merge branch 'master', remote-tracking branch 'remotes/upstream/master'
* remotes/upstream/master:
click anywhere to close notifications -> zeros and bubbles
revup
fix css
use fancybox instead of lightbox
fixes
* master:
Diffstat (limited to 'view/theme/diabook/group_side.tpl')
-rwxr-xr-x | view/theme/diabook/group_side.tpl | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/view/theme/diabook/group_side.tpl b/view/theme/diabook/group_side.tpl new file mode 100755 index 000000000..af183d04d --- /dev/null +++ b/view/theme/diabook/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> + |