denny/ShinyCMS

View on GitHub
root/polls/view_polls.tt

Summary

Maintainability
Test Coverage
[%-    meta.title = 'Polls' -%]

<ul>
[%- FOREACH poll IN polls %]
    <li><a href="[% c.uri_for( poll.id ) %]">[% poll.question | html %]</a> ([% poll.votes %] votes)</li>
[%- END %]
</ul>