2019-03-04 18:51:18 -08:00
|
|
|
- options = (!poll.expired? && poll.hide_totals?) ? poll.unloaded_options : poll.loaded_options
|
|
|
|
- voted = user_signed_in? && poll.votes.where(account: current_account).exists?
|
2019-03-04 09:03:12 -08:00
|
|
|
- show_results = voted || poll.expired?
|
|
|
|
|
|
|
|
.poll
|
|
|
|
%ul
|
|
|
|
- options.each do |option|
|
|
|
|
%li
|
|
|
|
- if show_results
|
2019-03-06 16:49:42 -08:00
|
|
|
- percent = poll.votes_count > 0 ? 100 * option.votes_count / poll.votes_count : 0
|
2019-03-04 09:03:12 -08:00
|
|
|
%span.poll__chart{ style: "width: #{percent}%" }
|
2019-03-04 18:51:18 -08:00
|
|
|
|
2019-03-04 09:03:12 -08:00
|
|
|
%label.poll__text><
|
2019-03-04 18:51:18 -08:00
|
|
|
%span.poll__number= percent.round
|
2019-03-04 09:03:12 -08:00
|
|
|
= option.title
|
|
|
|
- else
|
|
|
|
%label.poll__text><
|
2019-03-04 18:51:18 -08:00
|
|
|
%span.poll__input{ class: poll.multiple? ? 'checkbox' : nil}><
|
2019-03-04 09:03:12 -08:00
|
|
|
= option.title
|
|
|
|
.poll__footer
|
|
|
|
- unless show_results
|
|
|
|
%button.button.button-secondary{ disabled: true }
|
|
|
|
= t('statuses.poll.vote')
|
2019-03-04 18:51:18 -08:00
|
|
|
|
2019-03-04 09:03:12 -08:00
|
|
|
%span= t('statuses.poll.total_votes', count: poll.votes_count)
|
2019-03-04 18:51:18 -08:00
|
|
|
|
|
|
|
- unless poll.expires_at.nil?
|
|
|
|
·
|
|
|
|
%span= l poll.expires_at
|