poll_submit_button

   Usages of this macro
... in poll.naml
437
438
439
440
441
442
443
444
445
446
447
448
449
450
<macro name="poll_submit_button" requires="node">
    <n.comment
Macro
Parameters: text
.>
        Creates the submit button. Initially, it is just a span with some default text.
        The content of the span is updated by javascript code (see "poll_js" macro for more info)
    </n.comment.>
    <span id="poll-submit-button[n.id
Binary
Namespace: NodeNamespace
/]" class="bold">
        <n.if
Binary
Namespace: BasicNamespace
Parameters: condition, else, then
.poll_has_ended
Binary
Namespace: NodeNamespaceExt
Parameters: do
>
            <then><t>This poll is closed.</t></then>
            <else>
                <n.login_link
Macro
Parameters: text
.><t>Login to vote</t></n.login_link.>
            </else>
        </n.if.poll_has_ended>
    </span>
</macro>