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.
34 lines
1.1 KiB
34 lines
1.1 KiB
<section>
|
|
<h3>{$c->__('account.title')}</h3>
|
|
<br />
|
|
<ul class="active">
|
|
{loop="$sessions"}
|
|
<li id="{$value->jid}" class="action condensed" title="{$value->jid}">
|
|
<div class="action">
|
|
<i class="md md-close"></i>
|
|
</div>
|
|
{$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="md md-person"></i>
|
|
</span>
|
|
{/if}
|
|
<span>{$value->getTrueName()}</span>
|
|
<p>{$value->jid}</p>
|
|
</li>
|
|
{/loop}
|
|
</ul>
|
|
</section>
|
|
<div>
|
|
<a class="button flat" href="{$c->route('about')}">
|
|
<i class="md md-help"></i>
|
|
</a>
|
|
<a class="button flat" href="{$c->route('admin')}">
|
|
<i class="md md-pages"></i>
|
|
</a>
|
|
<span class="button flat" onclick="Login.toForm()">{$c->__('form.another_account')}</span>
|
|
</div>
|