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.
44 lines
1.5 KiB
44 lines
1.5 KiB
<section class="scroll">
|
|
<h3>{$c->__('chats.add')}</h3>
|
|
<ul class="active" id="add_extend">
|
|
<li class="subheader">{$c->__('chats.frequent')}</li>
|
|
{loop="$top"}
|
|
<li class="condensed {if="$value->last > 60"} inactive{/if}"
|
|
onclick="Chats_ajaxOpen('{$value->jid}'); Dialog.clear()">
|
|
{$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}
|
|
<li onclick="Chats_ajaxAddExtend()">
|
|
<span class="icon">
|
|
<i class="md md-add"></i>
|
|
</span>
|
|
<span>{$c->__('chats.more')}</span>
|
|
</li>
|
|
</ul>
|
|
<br />
|
|
<!--<div id="search_results">
|
|
|
|
</div>-->
|
|
</section>
|
|
<div>
|
|
<a onclick="Dialog.clear()" class="button flat">
|
|
{$c->__('button.close')}
|
|
</a>
|
|
</div>
|