poll_description_lines

   Usages of this macro
... in poll.naml
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
<macro name="poll_description_lines">
    <div class="weak-color" style="font-size:80%;margin-top:.6em">
        <n.if
Binary
Namespace: BasicNamespace
Parameters: condition, else, then
.not
Binary
Namespace: BasicNamespace
Parameters: condition
.poll_allow_vote_change
Binary
Namespace: NodeNamespaceExt
Parameters: do
>
            <then>
                <t>You cannot change your vote after voting.</t><br/>
            </then>
        </n.if.not.poll_allow_vote_change>
        <n.if
Binary
Namespace: BasicNamespace
Parameters: condition, else, then
.poll_has_end_date
Binary
Namespace: NodeNamespaceExt
Parameters: do
>
            <then>
                <n.if
Binary
Namespace: BasicNamespace
Parameters: condition, else, then
.poll_has_ended
Binary
Namespace: NodeNamespaceExt
Parameters: do
>
                    <then>
                        <t>This poll ended on <t.date.poll_end_date
Binary
Namespace: NodeNamespaceExt
Parameters: do
.long_format
Macro
Requires: date
/>.</t><br/>
                    </then>
                    <else>
                        <t>This poll ends on <t.date.poll_end_date
Binary
Namespace: NodeNamespaceExt
Parameters: do
.long_format
Macro
Requires: date
/>.</t><br/>
                        <n.if
Binary
Namespace: BasicNamespace
Parameters: condition, else, then
.not
Binary
Namespace: BasicNamespace
Parameters: condition
.poll_show_results_before_end
Binary
Namespace: NodeNamespaceExt
Parameters: do
>
                            <then>
                                <t>Results will be shown only after poll has ended.</t><br/>
                            </then>
                        </n.if.not.poll_show_results_before_end>
                    </else>
                </n.if.poll_has_ended>
            </then>
        </n.if.poll_has_end_date>
        <n.if
Binary
Namespace: BasicNamespace
Parameters: condition, else, then
.not
Binary
Namespace: BasicNamespace
Parameters: condition
.poll_show_results_before_vote
Binary
Namespace: NodeNamespaceExt
Parameters: do
>
            <then>
                <t>You have to vote before you can see the results.</t><br/>
            </then>
        </n.if.not.poll_show_results_before_vote>
    </div>
</macro>