7a9456d5ac
Fixed some stuff: - converted some files from DOS to Uni* (CRLF -> LF) - removed trailing white-spaces Signed-off-by: Roland Häder <roland@mxchange.org>
20 lines
598 B
Smarty
20 lines
598 B
Smarty
|
|
{{* Template for the contact group list *}}
|
|
<div id="group" class="contact_list">
|
|
|
|
<ul id="contact-group-list" class="viewcontact_wrapper media-list">
|
|
|
|
{{* The contacts who are already members of the contact group *}}
|
|
{{foreach $groupeditor.members as $contact}}
|
|
<li class="members active">{{include file="contact_template.tpl"}}</li>
|
|
{{/foreach}}
|
|
|
|
{{* The contacts who are not members of the contact group *}}
|
|
{{foreach $groupeditor.contacts as $contact}}
|
|
<li class="contacts">{{include file="contact_template.tpl"}}</li>
|
|
{{/foreach}}
|
|
|
|
</ul>
|
|
<div class="clear"></div>
|
|
</div>
|