]> git.mxchange.org Git - friendica.git/blob - view/theme/quattro/templates/circle_side.tpl
Merge pull request #13758 from Raroun/frio_More_space_between_photo_permissions_and_s...
[friendica.git] / view / theme / quattro / templates / circle_side.tpl
1 <div id="circle-sidebar" class="widget">
2         <div class="title tool">
3                 <h3 class="label">{{$title}}</h3>
4                 <a href="circle/new" title="{{$createtext}}" class="action"><span class="icon text s16 add"> {{$add}}</span></a>
5         </div>
6
7         <div id="sidebar-circle-list">
8                 <ul>
9                         {{foreach $circles as $circle}}
10                         <li class="tool  {{if $circle.selected}}selected{{/if}} circle-{{$circle.id}}">
11                                 <a href="{{$circle.href}}" class="label">
12                                         {{$circle.text}}
13                                 </a>
14                                 {{if $circle.edit}}
15                                         <a href="{{$circle.edit.href}}" class="action"><span class="icon text s10 edit">{{$circle.edit.title}}</span></a>
16                                 {{/if}}
17                                 {{if $circle.cid}}
18                                         <input type="checkbox"
19                                                 class="{{if $circle.selected}}ticked{{else}}unticked {{/if}} action"
20                                                 onclick="return contactCircleChangeMember(this, '{{$circle.id}}','{{$circle.cid}}');"
21                                                 {{if $circle.ismember}}checked="checked"{{/if}}
22                                         />
23                                 {{/if}}
24                                 <span class="notify"></span>
25                         </li>
26                         {{/foreach}}
27                 </ul>
28         </div>
29 </div>
30