location_column

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 "location_column".
... in user_nodes.naml
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
<macro name="location_column" parameters="title,width">
    <n.table_column>
        <head>
            <td class="header" style="[n.width_style.width/]">
                <n.default. to="[t]Location[/t]"><n.title/></n.default.>
            </td>
        </head>
        <body>
            <td class="weak-color">
                <n.if.not.current_node.is_app>
                    <then><n.current_node.app_or_root.node_link/></then>
                </n.if.not.current_node.is_app>
            </td>
        </body>
    </n.table_column>
</macro>