2 {{* Template for the contact group list *}}
3 <div id="group" class="contact_list">
5 <ul id="contact-group-list" class="viewcontact_wrapper media-list">
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>
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>
18 <div class="clear"></div>