mirror of
https://github.com/mastodon/mastodon.git
synced 2025-09-05 17:31:12 +00:00
17 lines
712 B
Plaintext
17 lines
712 B
Plaintext
.status__content><
|
|
- if status.spoiler_text.present?
|
|
%details<
|
|
%summary{
|
|
data: {
|
|
show: t('statuses.content_warning.show'),
|
|
hide: t('statuses.content_warning.hide'),
|
|
}
|
|
}><
|
|
%strong>
|
|
= t('statuses.content_warning.warning', warning: prerender_custom_emojis(h(status.spoiler_text), status.emojis))
|
|
= prerender_custom_emojis(status_content_format(status), status.emojis)
|
|
= render partial: 'admin/shared/status_attachments', locals: { status: status.proper }
|
|
- else
|
|
= prerender_custom_emojis(status_content_format(status), status.emojis)
|
|
= render partial: 'admin/shared/status_attachments', locals: { status: status.proper }
|