move_node

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 "move_node".
... in move_node.naml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<macro name="move_node" requires="servlet">
    <n.node_page.>
        <n.if.not.visitor.can_move.page_node>
            <then>
                <n.login.><t>Only authorized users can proceed in this area.</t></n.login.>
            </then>
        </n.if.not.visitor.can_move.page_node>
 
        <n.if.is_submitted_form>
            <then.save_parent_changes/>
        </n.if.is_submitted_form>
 
        <n.html>
            <head>
                <META NAME="robots" CONTENT="noindex,nofollow"/>
                <n.title.><t>Move Post</t></n.title.>
                <n.parent_url_field.focus/>
            </head>
            <body>
                <n.edit_header first_text="Move Post" second_text="[n.page_node.subject/]" />
                <n.show_move_node_error/>
                <n.form.>
                    <div class="weak-color" style="margin:1.5em 0 .5em">
                        <t>Enter permalink of the <b>post</b> or <b>forum</b> that will be the new parent,
                            or leave blank to make this message an independent topic:</t>
                    </div>
                    <n.parent_url_field.input size="60" />
                    <div style="margin-top:1.4em">
                        <input type="submit" value="[t]Move Post[/t]" /> <t>or</t> <a href="[n.page_node.path/]"><t>Cancel</t></a>
                    </div>
                </n.form.>
            </body>
        </n.html>
    </n.node_page.>
</macro>