diff options
author | friendica <info@friendica.com> | 2012-03-12 19:12:39 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-03-12 19:12:39 -0700 |
commit | e12706e825a65f1c7da1d0eee7a346dbdd2c34a3 (patch) | |
tree | 99fb2e26298b1dcc0b436b00b279f4e71a2dcbeb /view/theme/diabook/group_side.tpl | |
parent | acf75e85c86a2e47549ee74d60c7d82dcc5c8cc4 (diff) | |
parent | 691f5b11f70b35537482c0a647ed571475caedd8 (diff) | |
download | volse-hubzilla-e12706e825a65f1c7da1d0eee7a346dbdd2c34a3.tar.gz volse-hubzilla-e12706e825a65f1c7da1d0eee7a346dbdd2c34a3.tar.bz2 volse-hubzilla-e12706e825a65f1c7da1d0eee7a346dbdd2c34a3.zip |
Merge branch 'pull'
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> + |