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.
30 lines
1.0 KiB
30 lines
1.0 KiB
<ul class="active thick all">
|
|
{if="$invitations"}
|
|
<li class="subheader">{$c->__('notifs.title')}</li>
|
|
{/if}
|
|
{loop="$invitations"}
|
|
{if="isset($value)"}
|
|
<li data-jid="{$value->jid}" class="action">
|
|
<div class="action">
|
|
<!--
|
|
<a class="button flat red"
|
|
onclick="{$c->genCallRefuse($value->jid)}">
|
|
<i class="fa fa-times"></i>
|
|
</a>
|
|
<a class="button flat"
|
|
onclick="{$c->genCallAccept($value->jid)}">
|
|
{$c->__('button.add')}
|
|
</a>
|
|
-->
|
|
<a class="button flat" onclick="Notifs_ajaxAsk('{$value->jid}')">
|
|
{$c->__('notifs.manage')}
|
|
</a>
|
|
</div>
|
|
<span class="icon"><img src="{$value->getPhoto('xs')}"/></span>
|
|
<span href="{$c->route('friend', $value->jid)}">
|
|
{$value->getTrueName()}
|
|
</span>
|
|
</li>
|
|
{/if}
|
|
{/loop}
|
|
</ul>
|