51ff3226 |
1 | {get_movement_params} |
2 | |
3 | {if $error eq true} |
4 | <center><font style='error'>{$error}</font></center> |
5 | {/if} |
6 | |
7 | {if $user_id eq false} |
8 | <center>{include file="modules/loginbox.tpl"}</center> |
9 | |
10 | {else} |
11 | |
12 | <table width='100%'><tr> |
13 | |
14 | <!--left column--> |
15 | <td valign='top' align='center' width='23%'> |
16 | ;] |
17 | </td> |
18 | <!--end of left column--> |
19 | |
20 | <!--main central column--> |
21 | <td valign='top'> |
22 | <form method='post'> |
23 | <table align='center'><tr> |
24 | <td><input type='hidden' name='get_children_offset' value='{$offset}'></td> |
25 | <td><input type='submit' name='get_children_move' value='<'></td> |
26 | <td><input type='submit' name='get_children_move' value='<<'></td> |
27 | <td><input name='get_children_move' type='submit' value='>>'></td> |
28 | <td><input type='submit' name='get_children_move' value='>'></td> |
29 | </tr></table> |
30 | </form> |
31 | {if $node.node_id eq 23} |
32 | {get_last vector=0 listing_amount=$listing_amount offset=$offset} |
33 | {else}{get_last listing_amount=$listing_amount offset=$offset} |
34 | {/if} |
35 | |
36 | {foreach from=$get_last item=child} |
37 | <table> |
38 | <tr> |
39 | <td width='100' valign='top' rowspan='2'><a href='/id/{$child.node_creator}'><img border=0 hspace='5' src='{get_image_link id=$child.node_creator}'></a> </td> |
40 | <td style='width: 100%' valign='top'> |
41 | <table width=100%><tr class='header' width=100%> |
42 | <td> |
43 | parent: <a href='/id/{$child.node_parent}'>{$child.parent_name}</a><br> |
44 | author: <a href='/{$child.login}'>{$child.login}</a> |
45 | {if $child.user_action neq false} |
46 | [lokacia :: <a href='/id/{$child.user_action_id}/'>{$child.user_action}</a>] |
47 | {/if} |
48 | {$child.node_created|date_format:"%H:%M:%S - %d.%m.%Y"} |
49 | <tr><td>{$child.node_content|stripslashes|nl2br|imagestrip}</td></tr> |
50 | </table> |
51 | </table> |
52 | {/foreach} |
53 | <!--end of central column--> |
54 | |
55 | </td></tr></table> |
56 | {/if} |