You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
743 B
18 lines
743 B
-# locals: (status:, is_quote: false) |
|
- if status.spoiler_text.present? |
|
%details< |
|
%summary{ |
|
data: { |
|
show: t('statuses.content_warnings.show'), |
|
hide: t('statuses.content_warnings.hide'), |
|
} |
|
}>< |
|
%strong> |
|
= prerender_custom_emojis(h(status.spoiler_text), status.emojis) |
|
.status__content>< |
|
= prerender_custom_emojis(status_content_format(status), status.emojis) |
|
= render partial: 'admin/shared/status_attachments', locals: { status: status.proper, is_quote: is_quote } |
|
- else |
|
.status__content>< |
|
= prerender_custom_emojis(status_content_format(status), status.emojis) |
|
= render partial: 'admin/shared/status_attachments', locals: { status: status.proper, is_quote: is_quote }
|
|
|