priority_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 "priority_column".
... in priority_column.naml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<override_macro name="priority_column" parameters="clickable">
    <n.table_column>
        <head>
            <td class="main-border-color priority-column nowrap">
                <n.if.equal value1="[n.default. to='true'][n.clickable/][/n.default.]" value2="true">
                    <then><n.priority_dropdown/></then>
                    <else><t>Priority</t></else>
                </n.if.equal>
            </td>
        </head>
        <body>
            <td class="main-border-color" align="center"><n.current_node.show_priority/></td>
        </body>
    </n.table_column>
</override_macro>
Overrides default macro
... in workgroup.naml
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
<macro name="priority_column" parameters="clickable">
    <n.table_column>
        <head>
            <td class="medium-border-color priority-column nowrap">
                <n.if.equal value1="[n.default. to='true'][n.clickable/][/n.default.]" value2="true">
                    <then><n.priority_dropdown/></then>
                    <else><t>Priority</t></else>
                </n.if.equal>
            </td>
        </head>
        <body>
            <td class="medium-border-color" align="center"><n.current_node.show_priority/></td>
        </body>
    </n.table_column>
</macro>