aboutsummaryrefslogtreecommitdiffstats
path: root/view/theme/quattro/group_side.tpl
blob: 596a8d13fdae1e1db63bf3c9ad7f48390bc08949 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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"> $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">$group.edit.title</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>