menu_create_sub_app

NAML documentation   Watch a video
   Usages of this macro
The source code below doesn't have navigation links because no usage has been compiled yet. Navigation links depend on how and where the macro is used, so first you may try finding all usages of "menu_create_sub_app".
... in dropdown.naml
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
<macro name="menu_create_sub_app" requires="node">
    <n.if.is_in_command name="dropdown">
        <then>
            dropdown.add('createChildForum', '<n.javascript_string_encode.create_sub_app_link/>', 'display:none');
        </then>
        <else>
            <n.set_local_node.this_node/>
            <n.if.visitor.can_create_sub_apps_under.local_node>
                <then>
                    NabbleDropdown.show('createChildForum');
                </then>
            </n.if.visitor.can_create_sub_apps_under.local_node>
        </else>
    </n.if.is_in_command>
</macro>