friendica/view/theme/frio/templates/circle_editor.tpl

20 lines
601 B
Smarty

{{* Template for the contact circle list *}}
<div id="circle" class="contact_list">
<ul id="contact-circle-list" class="viewcontact_wrapper media-list">
{{* The contacts who are already members of the contact circle *}}
{{foreach $circle_editor.members as $contact}}
<li class="members active">{{include file="contact/entry.tpl"}}</li>
{{/foreach}}
{{* The contacts who are not members of the contact circle *}}
{{foreach $circle_editor.contacts as $contact}}
<li class="contacts">{{include file="contact/entry.tpl"}}</li>
{{/foreach}}
</ul>
<div class="clear"></div>
</div>