mirror of
https://github.com/mastodon/mastodon.git
synced 2024-11-26 23:41:52 +00:00
edeae945c0
Some checks are pending
Check i18n / check-i18n (push) Waiting to run
CodeQL / Analyze (javascript) (push) Waiting to run
CodeQL / Analyze (ruby) (push) Waiting to run
Crowdin / Upload translations / upload-translations (push) Waiting to run
Check formatting / lint (push) Waiting to run
CSS Linting / lint (push) Waiting to run
Haml Linting / lint (push) Waiting to run
JavaScript Linting / lint (push) Waiting to run
Ruby Linting / lint (push) Waiting to run
JavaScript Testing / test (push) Waiting to run
Historical data migration test / test (14-alpine) (push) Waiting to run
Historical data migration test / test (15-alpine) (push) Waiting to run
Ruby Testing / build (production) (push) Waiting to run
Ruby Testing / build (test) (push) Waiting to run
Ruby Testing / test (.ruby-version) (push) Blocked by required conditions
Ruby Testing / test (3.1) (push) Blocked by required conditions
Ruby Testing / test (3.2) (push) Blocked by required conditions
Ruby Testing / Libvips tests (.ruby-version) (push) Blocked by required conditions
Ruby Testing / Libvips tests (3.1) (push) Blocked by required conditions
Ruby Testing / Libvips tests (3.2) (push) Blocked by required conditions
Ruby Testing / End to End testing (.ruby-version) (push) Blocked by required conditions
Ruby Testing / End to End testing (3.1) (push) Blocked by required conditions
Ruby Testing / End to End testing (3.2) (push) Blocked by required conditions
Ruby Testing / Elastic Search integration testing (.ruby-version, docker.elastic.co/elasticsearch/elasticsearch:7.17.13) (push) Blocked by required conditions
Ruby Testing / Elastic Search integration testing (.ruby-version, docker.elastic.co/elasticsearch/elasticsearch:8.10.2) (push) Blocked by required conditions
Ruby Testing / Elastic Search integration testing (.ruby-version, opensearchproject/opensearch:2) (push) Blocked by required conditions
Ruby Testing / Elastic Search integration testing (3.1, docker.elastic.co/elasticsearch/elasticsearch:7.17.13) (push) Blocked by required conditions
Ruby Testing / Elastic Search integration testing (3.2, docker.elastic.co/elasticsearch/elasticsearch:7.17.13) (push) Blocked by required conditions
37 lines
1.3 KiB
Plaintext
37 lines
1.3 KiB
Plaintext
:ruby
|
|
show_results = (user_signed_in? && poll.voted?(current_account)) || poll.expired?
|
|
total_votes_count = poll.voters_count || poll.votes_count
|
|
|
|
.poll
|
|
%ul
|
|
- poll.loaded_options.each do |option|
|
|
%li
|
|
- if show_results
|
|
- percent = total_votes_count.positive? ? 100 * option.votes_count / total_votes_count : 0
|
|
%label.poll__option><
|
|
%span.poll__number><
|
|
#{percent.round}%
|
|
%span.poll__option__text
|
|
= prerender_custom_emojis(h(option.title), status.emojis)
|
|
|
|
%progress{ max: 100, value: [percent, 1].max, 'aria-hidden': 'true' }
|
|
%span.poll__chart
|
|
- else
|
|
%label.poll__option><
|
|
%span.poll__input{ class: poll.multiple? ? 'checkbox' : nil }><
|
|
%span.poll__option__text
|
|
= prerender_custom_emojis(h(option.title), status.emojis)
|
|
.poll__footer
|
|
- unless show_results
|
|
%button.button.button-secondary{ disabled: true }
|
|
= t('statuses.poll.vote')
|
|
|
|
- if poll.voters_count.nil?
|
|
%span= t('statuses.poll.total_votes', count: poll.votes_count)
|
|
- else
|
|
%span= t('statuses.poll.total_people', count: poll.voters_count)
|
|
|
|
- unless poll.expires_at.nil?
|
|
·
|
|
%span= l poll.expires_at
|