Kyberia v2.0
[mirrors/Kyberia-bloodline.git] / templates / hysteria / modules / get_userlist.tpl
1 <!--
2 This program is free software. It comes without any warranty, to
3 the extent permitted by applicable law. You can redistribute it
4 and/or modify it under the terms of the Do What The Fuck You Want
5 To Public License, Version 2, as published by Sam Hocevar. See
6 http://sam.zoy.org/wtfpl/COPYING for more details.
7 -->
8
9 <div class='active_users'>
10 <table cellspacing='0' cellpadding='0'>
11 {get_userlist vector=;1;102}
12 {if $active_friends eq true}
13 <tr><td width=100%>
14 <span class='important'><center>friends</center></span>
15 {foreach from=$active_friends item=node_visitor}
16 <a href='/id/{$node_visitor.user_id}'>{$node_visitor.login}</a><br>
17 {/foreach}
18 </td></tr>
19 {/if}
20 <tr><td>
21 <br><span class='important'><center>users on.line</center></span>
22 {foreach from=$active_users item=node_visitor}
23 <a href='/id/{$node_visitor.user_id}'>{$node_visitor.login}</a>
24 &nbsp;[<a href='/id/{$node_visitor.user_action_id}'>{$node_visitor.user_action|truncate:12}</a>]<br>
25 {/foreach}
26 </td></tr>
27 </table>
This page took 0.313415 seconds and 4 git commands to generate.