mirror of
https://github.com/mastodon/mastodon.git
synced 2025-09-05 17:31:12 +00:00
23 lines
897 B
Plaintext
23 lines
897 B
Plaintext
- if status.with_poll?
|
|
.poll
|
|
%ul
|
|
- status.preloadable_poll.options.each do |option|
|
|
%li
|
|
%label.poll__option.disabled<>
|
|
- if status.preloadable_poll.multiple?
|
|
%span.poll__input.checkbox{ role: 'checkbox', 'aria-label': option }
|
|
- else
|
|
%span.poll__input{ role: 'radio', 'aria-label': option }
|
|
%span.poll__option__text
|
|
= prerender_custom_emojis(html_aware_format(option, status.local?, multiline: false), status.emojis)
|
|
%button.button.button-secondary{ disabled: true }
|
|
= t('polls.vote')
|
|
|
|
- if status.with_media?
|
|
- if status.ordered_media_attachments.first.video?
|
|
= render_video_component(status, visible: false)
|
|
- elsif status.ordered_media_attachments.first.audio?
|
|
= render_audio_component(status)
|
|
- else
|
|
= render_media_gallery_component(status, visible: false)
|