Kyberia v2.0
[mirrors/Kyberia-bloodline.git] / templates / kyberia / 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}
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 <div class='active_user'><div class='active_user_img'><a href='/id/{$node_visitor.user_id}/'><img border='0' name='{$node_visitor.login}' width='50' height='50' alt='{$node_visitor.login}' title='{$node_visitor.login}' src='{get_image_link id=$node_visitor.user_id}'></a></div></div>
17 {/foreach}
18 </td></tr>
19 {/if}
20 <tr><td>
21 <span class='important'><center>users on.line</center></span>
22 {foreach from=$active_users item=node_visitor}
23 <center><a href='/id/{$node_visitor.user_id}'>{$node_visitor.login}</a><br></center>
24 {/foreach}
25 </td></tr>
26 </table>
This page took 0.268772 seconds and 4 git commands to generate.