51ff3226 |
1 | {include file="modules/header.tpl"} |
2 | |
3 | <table width=100%> |
4 | <tr><td valign='top' width=12%> |
5 | {include file="modules/get_userlist.tpl"} |
6 | </td> |
7 | |
8 | <td valign='top' width=50%> |
9 | |
10 | <form method='post' action='/id/{$node.node_id}'> |
11 | |
12 | {get_bookmarks} |
13 | <input type="button" value="+ {$bookmark_category.node_name}" |
14 | onClick="document.getElementById('{$bookmark_category.node_id}').style.visibility = |
15 | 'visible';"><br> |
16 | <div style="visibility:hidden" id="{$bookmark_category.node_id}" name="{$bookmark_category.node_id}"> |
17 | {foreach from=$get_bookmarks item=bookmark_category} |
18 | {* showing bookmark category *} |
19 | {if $bookmark_category.node_name neq false} |
20 | .kategoria::<a class='important' href='/id/{$bookmark_category.node_id}/'>{$bookmark_category.node_name}</a> |
21 | {if $bookmark_category.sum neq false} |
22 | .:: <span class='most_important'> {$bookmark_category.sum} NEW</span> |
23 | {/if} |
24 | {/if} |
25 | <br> |
26 | |
27 | {foreach from=$bookmark_category.children item=bookmarks} |
28 | {if $bookmarks.node_name neq false && $bookmarks.node_id neq ''} |
29 | <input style='height: 11px; width: 11px;' type='checkbox' name='bookmarks_chosen[]' value='{$bookmarks.node_id}'> |
30 | <a href='/id/{$bookmarks.node_id}'>{$bookmarks.node_name}</a> |
31 | {if $bookmarks.node_user_subchild_count neq false} |
32 | zle:: <span class='most_important'> {$bookmarks.node_user_subchild_count} NEW CHILDREN</span> |
33 | {/if} |
34 | {if $bookmarks.lastdescendant_created > $bookmarks.last_visit} |
35 | :: <span class='most_important'>!!NEW DESCENDANT!!</span> |
36 | {/if} |
37 | {/if} |
38 | <br> |
39 | |
40 | {/foreach} |
41 | </div> |
42 | {/foreach} |
43 | |
44 | |
45 | <input type='text' name='bookmark_category_id'><input type='submit' name='event' value='set_bookmark_category'> |
46 | |
47 | </form> |
48 | |
49 | </td></tr></table> |
50 | |
51 | {include file="modules/footer.tpl"} |
52 | |