themes-community/fishfinger/templates/group_side.tpl
Tobias Diekershoff 9a5e6138b6
added the Fishfinger theme
The Fishfinger theme is derived from the Quattro theme. This must be available in the Friendica themes directory.

Creation date around the 2012, at a time when "vier" was either not there or just in the beginning
2022-06-21 08:48:08 +02:00

35 lines
1,022 B
Smarty

{{*
* AUTOMATICALLY GENERATED TEMPLATE
* DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN
*
*}}
<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>
{{foreach $groups as $group}}
<li class="tool {{if $group.selected}}selected{{/if}}">
<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>
{{/if}}
{{if $group.cid}}
<input type="checkbox"
class="{{if $group.selected}}ticked{{else}}unticked {{/if}} action"
onclick="contactgroupChangeMember('{{$group.id}}','{{$group.cid}}');return true;"
{{if $group.ismember}}checked="checked"{{/if}}
/>
{{/if}}
</li>
{{/foreach}}
</ul>
</div>
</div>