2019-03-07 22:53:47 +01:00
|
|
|
- show_results = (user_signed_in? && poll.voted?(current_account)) || poll.expired?
|
2019-03-04 18:03:12 +01:00
|
|
|
|
|
|
|
.poll
|
|
|
|
%ul
|
2019-03-07 22:53:47 +01:00
|
|
|
- poll.loaded_options.each do |option|
|
2019-03-04 18:03:12 +01:00
|
|
|
%li
|
|
|
|
- if show_results
|
2019-03-07 01:49:42 +01:00
|
|
|
- percent = poll.votes_count > 0 ? 100 * option.votes_count / poll.votes_count : 0
|
2019-03-04 18:03:12 +01:00
|
|
|
%span.poll__chart{ style: "width: #{percent}%" }
|
2019-03-05 03:51:18 +01:00
|
|
|
|
2019-03-04 18:03:12 +01:00
|
|
|
%label.poll__text><
|
2019-03-05 03:51:18 +01:00
|
|
|
%span.poll__number= percent.round
|
2019-03-20 17:29:12 +01:00
|
|
|
= Formatter.instance.format_poll_option(status, option, autoplay: autoplay)
|
2019-03-04 18:03:12 +01:00
|
|
|
- else
|
|
|
|
%label.poll__text><
|
2019-03-05 03:51:18 +01:00
|
|
|
%span.poll__input{ class: poll.multiple? ? 'checkbox' : nil}><
|
2019-03-20 17:29:12 +01:00
|
|
|
= Formatter.instance.format_poll_option(status, option, autoplay: autoplay)
|
2019-03-04 18:03:12 +01:00
|
|
|
.poll__footer
|
|
|
|
- unless show_results
|
|
|
|
%button.button.button-secondary{ disabled: true }
|
|
|
|
= t('statuses.poll.vote')
|
2019-03-05 03:51:18 +01:00
|
|
|
|
2019-03-04 18:03:12 +01:00
|
|
|
%span= t('statuses.poll.total_votes', count: poll.votes_count)
|
2019-03-05 03:51:18 +01:00
|
|
|
|
|
|
|
- unless poll.expires_at.nil?
|
|
|
|
·
|
|
|
|
%span= l poll.expires_at
|