51ff3226 |
1 | {include file="modules/header.tpl"} |
2 | |
3 | <form method='post' action='/id/{$node.node_id}'> |
4 | |
5 | <ul id="bookmarks"> |
6 | {get_bookmarks} |
7 | {foreach from=$get_bookmarks item=bookmark_category} |
8 | {if $bookmark_category.node_name neq false} |
9 | <li><hr noshade><h1><a href="/id/{$bookmark_category.node_id}">{$bookmark_category.node_name}</a></h1></li> |
10 | {else} |
11 | <li>{$bookmark_category.node_id}</li> |
12 | {/if} |
13 | {foreach from=$bookmark_category.children item=bookmarks} |
14 | <ul> |
15 | {if $bookmarks.node_name} |
16 | <li> |
17 | <input style='height: 11px; width: 11px;' type='checkbox' name='bookmarks_chosen[]' value='{$bookmarks.node_id}'> <a href='/id/{$bookmarks.node_id}'>{$bookmarks.node_name}</a> |
18 | {if $bookmarks.node_user_subchild_count neq false} |
19 | <strong> [{$bookmarks.node_user_subchild_count} New]</strong> |
20 | {/if} |
21 | {if $bookmarks.lastdescendant_created > $bookmarks.last_visit} |
22 | <strong> [Babooo]</strong> |
23 | {/if} |
24 | </li> |
25 | {/if} |
26 | </ul> |
27 | {/foreach} |
28 | {/foreach} |
29 | <br> |
30 | <input type='text' name='bookmark_category_id'> <input type='submit' name='event' value='set_bookmark_category'> |
31 | </form> |
32 | </ul> |
33 | {include file="modules/footer.tpl"} |
34 | |
35 | |
36 | |
37 | |
38 | |
39 | |