51ff3226 |
1 | {include file="modules/header.tpl"} |
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% cellpadding='5'> |
13 | <tr> |
14 | <td valign='top' width=20%> |
15 | </td> |
16 | |
17 | <td valign='top' width=70%> |
18 | |
19 | {get_bookmarks} |
20 | {foreach from=$get_bookmarks item=bookmark_category} |
21 | {* showing bookmark category *} |
22 | |
23 | {foreach from=$bookmark_category.children item=bookmarks} |
24 | {if $bookmarks.parent eq $node.node_id} |
25 | |
26 | <input style='height: 11px; width: 11px;' type='checkbox' name='bookmarks_chosen[]' value='{$bookmarks.node_id}'> |
27 | <a href='/id/{$bookmarks.node_id}'>{$bookmarks.node_name|strip_tags}</a> |
28 | |
29 | {if $bookmarks.node_user_subchild_count neq false} :: <span class='most_important'>{$bookmarks.node_user_subchild_count} NeW</span> |
30 | {/if} |
31 | |
32 | {if $bookmarks.lastdescendant_created > $bookmarks.last_visit}:: <span class='most_important'>DeSC</span> |
33 | {/if} |
34 | {if $bookmarks.node_creator eq $user_id or $bookmarks.node_permission eq 'master' or $bookmarks.node_permission eq 'op'} :: [<a href='/id/{$bookmarks.node_id}/configure'>configure</a>]{/if} |
35 | </div> |
36 | |
37 | {/if} |
38 | {/foreach} |
39 | |
40 | <br> |
41 | |
42 | {/foreach} |
43 | |
44 | </td> |
45 | </tr></table> |
46 | {/if} |
47 | |
48 | {include file="modules/footer.tpl"} |