assignee_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 "assignee_column".
... in assignee_column.naml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<override_macro name="assignee_column" parameters="width,title,clickable">
    <n.table_column>
        <head>
            <td class="main-border-color assignee-column nowrap" style="border-top-right-radius: 1em;border-bottom-right-radius: 1em">
                <n.if.equal value1="[n.default. to='true'][n.clickable/][/n.default.]" value2="true">
                    <then><n.assignee_dropdown/></then>
                    <else><t>Assignee</t></else>
                </n.if.equal>
            </td>
        </head>
        <body>
            <td class="main-border-color nowrap"><n.current_node.show_assignee/></td>
        </body>
    </n.table_column>
</override_macro>
Overrides default macro
... in workgroup.naml
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
<macro name="assignee_column" parameters="width,title,clickable">
    <n.table_column>
        <head>
            <td class="medium-border-color assignee-column nowrap" style="[n.width_style.width/]">
                <n.if.equal value1="[n.default. to='true'][n.clickable/][/n.default.]" value2="true">
                    <then><n.assignee_dropdown/></then>
                    <else><t>Assignee</t></else>
                </n.if.equal>
            </td>
        </head>
        <body>
            <td class="medium-border-color nowrap"><n.current_node.show_assignee/></td>
        </body>
    </n.table_column>
</macro>