diff options
author | Michael <icarus@dabo.de> | 2012-05-16 08:10:28 +0200 |
---|---|---|
committer | Michael <icarus@dabo.de> | 2012-05-16 08:10:28 +0200 |
commit | 2b8c4df544f59d611ad1e8fc0dbc5fcd38bee8f7 (patch) | |
tree | 8c569c61c06e50c943addc132286d44c2f8ec178 /view/theme/diabook/diabook-red/group_side.tpl | |
parent | 188829ed46be6d3c7a91380226e26e8292c327be (diff) | |
parent | a3f08c44be78d4517e9f1619811def09b2ec7e7a (diff) | |
download | volse-hubzilla-2b8c4df544f59d611ad1e8fc0dbc5fcd38bee8f7.tar.gz volse-hubzilla-2b8c4df544f59d611ad1e8fc0dbc5fcd38bee8f7.tar.bz2 volse-hubzilla-2b8c4df544f59d611ad1e8fc0dbc5fcd38bee8f7.zip |
Merge branch 'master' of github.com:annando/friendica
Diffstat (limited to 'view/theme/diabook/diabook-red/group_side.tpl')
-rwxr-xr-x | view/theme/diabook/diabook-red/group_side.tpl | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/view/theme/diabook/diabook-red/group_side.tpl b/view/theme/diabook/diabook-red/group_side.tpl new file mode 100755 index 000000000..8600402f2 --- /dev/null +++ b/view/theme/diabook/diabook-red/group_side.tpl @@ -0,0 +1,34 @@ +<div id="profile_side" > + <div class=""> + <h3 style="margin-left: 2px;">$title<a href="group/new" title="$createtext" class="icon text_add"></a></h3> + </div> + + <div id="sidebar-group-list"> + <ul class="menu-profile-side"> + {{ for $groups as $group }} + <li class="menu-profile-list"> + <span class="menu-profile-icon {{ if $group.selected }}group_selected{{else}}group_unselected{{ endif }}"></span> + <a href="$group.href" class="menu-profile-list-item"> + $group.text + </a> + {{ if $group.edit }} + <a href="$group.edit.href" class="action"><span class="icon text_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> + {{ if $ungrouped }} + <div id="sidebar-ungrouped"> + <a href="nogroup">$ungrouped</a> + </div> + {{ endif }} +</div> + |