poll_description_lines

   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_description_lines".
... 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.not.poll_allow_vote_change>
            <then>
                <t>You cannot change your vote after voting.</t><br/>
            </then>
        </n.if.not.poll_allow_vote_change>
        <n.if.poll_has_end_date>
            <then>
                <n.if.poll_has_ended>
                    <then>
                        <t>This poll ended on <t.date.poll_end_date.long_format/>.</t><br/>
                    </then>
                    <else>
                        <t>This poll ends on <t.date.poll_end_date.long_format/>.</t><br/>
                        <n.if.not.poll_show_results_before_end>
                            <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.not.poll_show_results_before_vote>
            <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>