51ff3226 |
1 | <!-- fixnute zobrazovanie chybnych bookmarkov, inak standard --> |
2 | |
3 | {include file="modules/header.tpl"} |
4 | |
5 | <table width=100%> |
6 | <tr><td valign='top' width=12%> |
7 | {include file="modules/get_userlist.tpl"} |
8 | </td> |
9 | |
10 | <td valign='top' width=50%> |
11 | |
12 | <form method='post' action='/id/{$node.node_id}'> |
13 | |
14 | {get_bookmarks} |
15 | {foreach from=$get_bookmarks item=bookmark_category} |
16 | {* showing bookmark category *} |
17 | {if $bookmark_category.node_name neq false} |
18 | kategoria::<a class='important' href='/id/{$bookmark_category.node_id}/'>{$bookmark_category.node_name}</a> |
19 | {if $bookmark_category.sum neq false} |
20 | :: <span class='most_important'> {$bookmark_category.sum} NEW</span> |
21 | {/if} |
22 | {/if} |
23 | <br> |
24 | |
25 | {foreach from=$bookmark_category.children item=bookmarks} |
26 | {if $bookmarks.node_name neq false && $bookmarks.node_id neq ''} |
27 | <input style='height: 11px; width: 11px;' type='checkbox' name='bookmarks_chosen[]' value='{$bookmarks.node_id}'> |
28 | <a href='/id/{$bookmarks.node_id}'>{$bookmarks.node_name}</a> |
29 | {if $bookmarks.node_user_subchild_count neq false} |
30 | :: <span class='most_important'> {$bookmarks.node_user_subchild_count} NEW CHILDREN</span> |
31 | {/if} |
32 | {if $bookmarks.lastdescendant_created > $bookmarks.last_visit} |
33 | :: <span class='most_important'>!!NEW DESCENDANT!!</span> |
34 | {/if} |
35 | <br> |
36 | {/if} |
37 | |
38 | {/foreach} |
39 | |
40 | <br> |
41 | {/foreach} |
42 | |
43 | <input type='text' name='bookmark_category_id'><input type='submit' name='event' value='set_bookmark_category'> |
44 | </form> |
45 | |
46 | </td></tr></table> |
47 | |
48 | {include file="modules/footer.tpl"} |
49 | |
50 | |
51 | |
52 | |
53 | |
54 | |
55 | |
56 | |
57 | |
58 | |
59 | |
60 | |
61 | |
62 | |
63 | |
64 | |
65 | |
66 | |
67 | |
68 | |
69 | |
70 | |
71 | |
72 | |
73 | |
74 | |
75 | |
76 | |
77 | |
78 | |
79 | |
80 | |
81 | |
82 | |
83 | |
84 | |
85 | |