diff options
author | Vasudev Kamath <kamathvasudev@gmail.com> | 2012-04-22 12:08:05 +0530 |
---|---|---|
committer | Vasudev Kamath <kamathvasudev@gmail.com> | 2012-04-22 12:08:05 +0530 |
commit | f1d84c10458986a0a014f844e784617401764b29 (patch) | |
tree | a9428755260c3e132ccc507e1df4656431964c43 /view/theme/diabook/diabook-dark/group_side.tpl | |
parent | 4499ce96a0c5fd7ca9feb2b9b5e62876155aa63e (diff) | |
parent | 54817f058a4f62301525950d8cdf0189b4d964dc (diff) | |
download | volse-hubzilla-f1d84c10458986a0a014f844e784617401764b29.tar.gz volse-hubzilla-f1d84c10458986a0a014f844e784617401764b29.tar.bz2 volse-hubzilla-f1d84c10458986a0a014f844e784617401764b29.zip |
Merge branch 'master' of git://github.com/friendica/friendica
Diffstat (limited to 'view/theme/diabook/diabook-dark/group_side.tpl')
-rw-r--r-- | view/theme/diabook/diabook-dark/group_side.tpl | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/view/theme/diabook/diabook-dark/group_side.tpl b/view/theme/diabook/diabook-dark/group_side.tpl new file mode 100644 index 000000000..8600402f2 --- /dev/null +++ b/view/theme/diabook/diabook-dark/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> + |