mirror of https://github.com/movim/movim
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
1.1 KiB
31 lines
1.1 KiB
<div class="placeholder icon">
|
|
<h1>{$c->__('chat.empty_title')}</h1>
|
|
<h4>{$c->__('chat.empty_text')}</h4>
|
|
</div>
|
|
<br />
|
|
<ul class="flex middle active">
|
|
<li class="subheader block large">{$c->__('chat.frequent')}</li>
|
|
{loop="$top"}
|
|
<li class="condensed block {if="$value->last > 60"} inactive{/if}"
|
|
onclick="Chats_ajaxOpen('{$value->jid}'); Chat_ajaxGet('{$value->jid}');">
|
|
{$url = $value->getPhoto('s')}
|
|
{if="$url"}
|
|
<span class="icon bubble
|
|
{if="$value->value"}
|
|
status {$presencestxt[$value->value]}
|
|
{/if}">
|
|
<img src="{$url}">
|
|
</span>
|
|
{else}
|
|
<span class="icon bubble color {$value->jid|stringToColor}
|
|
{if="$value->value"}
|
|
status {$presencestxt[$value->value]}
|
|
{/if}">
|
|
<i class="md md-person"></i>
|
|
</span>
|
|
{/if}
|
|
<span>{$value->getTrueName()}</span>
|
|
<p class="wrap">{$value->jid}</p>
|
|
</li>
|
|
{/loop}
|
|
</ul>
|