mirror of
https://github.com/friendica/friendica
synced 2024-11-15 18:13:54 +00:00
25 lines
773 B
Smarty
25 lines
773 B
Smarty
{{*
|
|
* Copyright (C) 2010-2024, the Friendica project
|
|
* SPDX-FileCopyrightText: 2010-2024 the Friendica project
|
|
*
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*}}
|
|
|
|
{{* 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>
|