Kyberia v2.0
[mirrors/Kyberia-bloodline.git] / templates / sv / modules / addnode_small.tpl
1 <!--
2 This program is free software. It comes without any warranty, to
3 the extent permitted by applicable law. You can redistribute it
4 and/or modify it under the terms of the Do What The Fuck You Want
5 To Public License, Version 2, as published by Sam Hocevar. See
6 http://sam.zoy.org/wtfpl/COPYING for more details.
7 -->
8
9 <br>
10 {if $permissions.w eq true}
11 <input type='hidden' name='node_parent' value='{$node.node_id}'>
12 <table><tr><td><input type='submit' name='event' value='add'>
13 <td>
14 <select name='node_system_access'>
15 <option value='public' {if $node.node_system_access eq 'public'}selected{/if}>public</option>
16 <option value='moderated' {if $node.node_system_access eq 'moderated'}selected{/if}>moderated</option>
17 <option value='private' {if $node.node_system_access eq 'private'}selected{/if}>private</option>
18 <option value='crypto' {if $node.node_system_access eq 'crypto'}selected{/if}>crypto</option>
19 </select>
20 </td>
21 <td>
22 <select name='node_type'>
23 {foreach from=$children_types item=node_type}
24 <option value='{$node_type}'>{$types[$node_type]}</option>
25 {/foreach}
26 </select>
27 </td>
28 <td> with name:</td> <td><input type='text' name='node_name'></td>
29 </table>
30 {/if}
This page took 0.387086 seconds and 4 git commands to generate.