mirror of
https://github.com/YunoHost-Apps/movim_ynh.git
synced 2024-09-03 19:46:19 +02:00
22 lines
692 B
Smarty
22 lines
692 B
Smarty
<br />
|
|
{$group = ''}
|
|
{loop="$contacts"}
|
|
{if="$group != $value->groupname"}
|
|
<li class="subheader">{$value->groupname}</li>
|
|
{/if}
|
|
<li class="condensed" onclick="Chats_ajaxOpen('{$value->jid}'); Dialog.clear()">
|
|
{$url = $value->getPhoto('s')}
|
|
{if="$url"}
|
|
<span class="icon bubble">
|
|
<img src="{$url}">
|
|
</span>
|
|
{else}
|
|
<span class="icon bubble color {$value->jid|stringToColor}">
|
|
<i class="zmdi zmdi-account"></i>
|
|
</span>
|
|
{/if}
|
|
<span>{$value->getTrueName()}</span>
|
|
<p class="wrap">{$value->jid}</p>
|
|
</li>
|
|
{$group = $value->groupname}
|
|
{/loop}
|