7b15f27ba4
Signed-off-by: Simon L'nu <simon.lnu@gmail.com>
31 lines
1,010 B
Smarty
31 lines
1,010 B
Smarty
<div id="group-sidebar" class="widget">
|
|
<h3 class="label">$title</h3>
|
|
|
|
<div id="sidebar-group-list">
|
|
<ul id="sidebar-group-ul">
|
|
{{ for $groups as $group }}
|
|
<li class="sidebar-group-li">
|
|
<a href="$group.href" class="sidebar-group-element {{ if $group.selected }}group-selected{{ endif }}">$group.text</a>
|
|
{{ if $group.edit }}
|
|
<a
|
|
class="groupsideedit"
|
|
href="$group.edit.href" title="$group.edit.title"><span class="icon small-pencil"></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 id="sidebar-new-group">
|
|
<a href="group/new" title="$createtext"><span class="action text add">$createtext</span></a>
|
|
</div>
|
|
</div>
|
|
|
|
|