2012-04-13 18:28:11 +02:00
|
|
|
<div id="profile_side" >
|
|
|
|
<div class="">
|
|
|
|
<h3 style="margin-left: 2px;">$title<a href="group/new" title="$createtext" class="icon text_add"></a></h3>
|
2012-03-12 23:31:54 +01:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div id="sidebar-group-list">
|
2012-04-13 18:28:11 +02:00
|
|
|
<ul class="menu-profile-side">
|
2012-03-12 23:31:54 +01:00
|
|
|
{{ for $groups as $group }}
|
2012-04-13 18:28:11 +02:00
|
|
|
<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">
|
2012-03-12 23:31:54 +01:00
|
|
|
$group.text
|
|
|
|
</a>
|
|
|
|
{{ if $group.edit }}
|
2012-04-13 18:28:11 +02:00
|
|
|
<a href="$group.edit.href" class="action"><span class="icon text_edit" ></span></a>
|
2012-03-12 23:31:54 +01:00
|
|
|
{{ 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>
|
2012-04-16 16:05:29 +02:00
|
|
|
{{ if $ungrouped }}
|
|
|
|
<div id="sidebar-ungrouped">
|
|
|
|
<a href="nogroup">$ungrouped</a>
|
|
|
|
</div>
|
|
|
|
{{ endif }}
|
2012-03-12 23:31:54 +01:00
|
|
|
</div>
|
|
|
|
|