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.
 
 
 
 

19 lines
730 B

<li
id="{$contact->jid}_chat_item"
data-jid="{$contact->jid}"
{if="isset($message)"}class="condensed"{/if}
title="{$contact->jid}">
<span data-key="chat|{$contact->jid}" class="counter bottom"></span>
<span class="icon bubble {if="isset($presence)"}status {$presence}{/if}">
<img src="{$contact->getPhoto('s')}">
</span>
<span>{$contact->getTrueName()}</span>
{if="isset($message)"}
<span class="info">{$message->delivered|strtotime|prepareDate}</span>
{if="preg_match('#^\?OTR#', $message->body)"}
<p><i class="md md-lock"></i> {$c->__('message.encrypted')}</p>
{else}
<p>{$message->body|prepareString}</p>
{/if}
{/if}
</li>