diaspora/app/assets/templates/poll_tpl.jst.hbs

32 lines
No EOL
1.1 KiB
Handlebars

{{#if poll}}
<div class="poll_form">
<p class="poll_statistic">{{t "poll.count" votes=poll.participation_count}}</p>
<strong>{{poll.question}}</strong><br/>
{{#unless already_participated_in_poll}}
<form action="/posts/{{poll.post_id}}/poll_participations" method="POST">
{{#poll.poll_answers}}
<input type="radio" name="vote" value="{{id}}"/>
{{answer}}
<br/>
{{/poll.poll_answers}}
<input type="submit" class="button submit" style="float:right;" value="{{t "poll.vote"}}"/>
</form>
<p class="toggle_result_wrapper">
<br/><a href="#" class="toggle_result">{{t "poll.toggle_result"}}</a><br/>
</p>
{{/unless}}
<div class="poll_result">
<br/><strong>{{t "poll.result"}}</strong><br/>
{{#poll.poll_answers}}
<div class="poll_answer_entry">
<div class="poll_progress_bar_wrapper">
<div class="poll_progress_bar" data-answerid="{{id}}"> </div>
</div>
{{answer}}
<p class="percentage"></p>
</div>
{{/poll.poll_answers}}
</div>
</div>
{{/if}}