51ff3226 |
1 | {get_movement_params children_count=$node.node_children_count} |
2 | {include file="modules/header.tpl"} |
3 | |
4 | {if $error eq true} |
5 | <center><font style='error'>{$error}</font></center> |
6 | {/if} |
7 | |
8 | {if $user_id eq false} |
9 | <center>{include file="modules/loginbox.tpl"}</center><br><br> |
10 | {/if} |
11 | |
12 | <table width='100%'><tr> |
13 | |
14 | <!--left column--> |
15 | <td valign='top' align='center' width='23%'> |
16 | {* show node info *} |
17 | {include file="modules/node_settings.tpl"} |
18 | |
19 | {* showing poll *} |
20 | {include file="modules/get_poll_box.tpl"} |
21 | <br> |
22 | {*showing bookmark_statistics*} |
23 | {include file="modules/get_bookmark_statistics_box.tpl"} |
24 | </td> |
25 | <!--end of left column--> |
26 | |
27 | <!--main central column--> |
28 | <td width=66% valign='top'> |
29 | {*showing node_content*} |
30 | {get_children listing_amount='23232323232323' offset=$offset} |
31 | <table width='100%' align='center'><tr> |
32 | {foreach name=picz from=$get_children item=child} |
33 | {if $smarty.foreach.picz.iteration is div by 5}</tr><tr>{/if} |
34 | <td width='190'> |
35 | <table> |
36 | <tr><td class='important'>{$child.node_name}</td></tr> |
37 | <tr> |
38 | <td><a href='/id/{$child.node_id}/'><img border='0' name='{$child.node_name}' src='{get_image_link id=$child.node_id}'></a> |
39 | |
40 | </tr> |
41 | </table> |
42 | </td> |
43 | {/foreach} |
44 | </tr> |
45 | </table> |
46 | |
47 | {*showing form for adding child node*} |
48 | <form method='post' action='/id/{$node.node_id}'> |
49 | {if $permissions.w eq true}{include file="modules/addnode.tpl"}{/if} |
50 | </form> |
51 | |
52 | <center>{include file="modules/movement.tpl"}</center> |
53 | <!--end of central column--> |
54 | |
55 | </td></tr></table> |
56 | |
57 | {include file="modules/footer.tpl"} |
58 | |
59 | |
60 | |