]> git.mxchange.org Git - friendica.git/blob - view/theme/frio/templates/groupeditor.tpl
Frio: add input for login backround image in admin settings
[friendica.git] / view / theme / frio / templates / groupeditor.tpl
1
2 {{* Template for the contact group list *}}
3 <div id="group" class="contact_list">
4
5         <ul id="contact-group-list" class="viewcontact_wrapper media-list">
6
7                 {{* The contacts who are already members of the contact group *}}
8                 {{foreach $groupeditor.members as $contact}}
9                         <li class="members active">{{include file="contact_template.tpl"}}</li>
10                 {{/foreach}}
11
12                 {{* The contacts who are not members of the contact group *}}
13                 {{foreach $groupeditor.contacts as $contact}}
14                         <li class="contacts">{{include file="contact_template.tpl"}}</li>
15                 {{/foreach}}
16
17         </ul>
18         <div class="clear"></div>
19 </div>