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.
14 lines
458 B
14 lines
458 B
<div id="statistics" class="tabelem padded" title="{$c->t("Statistics")}">
|
|
<ul class="list">
|
|
<li class="title">
|
|
<a class="action">{$c->t('Since')}</a>
|
|
{$c->t('Sessions')} - {$sessions|count}
|
|
</li>
|
|
{loop="$sessions"}
|
|
<li>
|
|
<a class="action">{$c->getTime($value->rid)}</a>
|
|
<a>{$value->username}@{$value->host}</a>
|
|
</li>
|
|
{/loop}
|
|
</ul>
|
|
</div>
|