app_is_by_priority

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 "app_is_by_priority".
... in workgroup.naml
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
<macro name="app_is_by_priority" requires="node_page,servlet">
    <n.cache. var="app_is_by_priority">
        <n.either>
            <condition1>
                <n.not.is_null.app_priority/>
            </condition1>
            <condition2>
                <n.both>
                    <condition1>
                        <n.not.is_null.app_assignee/>
                    </condition1>
                    <condition2>
                        <n.if.not.equal value1="[n.app_assignee/]" value2="0" >
                            <then>
                                <n.check_user.app_assignee/>
                                <n.true/>
                            </then>
                            <else>
                                <n.false/>
                            </else>
                        </n.if.not.equal>
                    </condition2>
                </n.both>
            </condition2>
        </n.either>
    </n.cache.>
</macro>