aboutsummaryrefslogtreecommitdiffstats
path: root/view/theme/dispy/group_side.tpl
blob: 516d70d5b4c1a1ac24c5a3b1b0c28b3dc04b3f1b (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
30
<div class="widget" id="group-sidebar">
<h3>$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="$edittext"><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>