poll_link

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 "poll_link".
... in poll.naml
48
49
50
51
52
53
54
55
56
57
<macro name="poll_link" requires="node">
    <n.if.has_poll>
        <then>
            <div style="background-color:#FFFADB;border:#EDDD79 solid 1px;margin-top:1em;padding:.5em">
                <b><t>This message has a poll</t></b> --  <t>Visit the link below if you want to participate:</t><br/>
                <a href="[n.url/]"><n.url/></a>
            </div>
        </then>
    </n.if.has_poll>
</macro>