Kyberia v2.0
[mirrors/Kyberia-bloodline.git] / templates / hysteria / move.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 {include file="modules/header.tpl"}
10
11 {if $error eq true}
12 <center><font style='error'>{$error}</font></center>
13 {/if}
14
15 {if $user_id eq false}
16 <center>{include file="modules/loginbox.tpl"}</center>
17
18 {else}
19
20 <table width='100%'><tr>
21
22 <!--left column-->
23 <td valign='top' align='center' width='23%'>
24 {include file="modules/node_settings.tpl"}
25 {include file="modules/userinfo.tpl"}
26
27 </td>
28 <!--end of left column-->
29
30 <td valign='top'>
31 {include file="modules/movement.tpl"}
32 {get_movement user_id=$node.node_id offset=$offset listing_amount=$listing_amount}
33 {foreach from=$get_movement item=movement}
34 <a href='/id/{$movement.node_id}'>{$movement.node_name}</a>
35 &nbsp;({$movement.last_visit|date_format:"%d.%m.%Y. - %H:%M:%S"})<br>
36 {/foreach}
37 </td>
38
39 <!--end of central column-->
40
41 </td></tr></table>
42 {/if}
43
44 {include file="modules/footer.tpl"}
This page took 0.266455 seconds and 4 git commands to generate.