2018-04-20 00:28:48 +00:00
|
|
|
.batch-table__row
|
|
|
|
%label.batch-table__row__select.batch-checkbox
|
|
|
|
= f.check_box :status_ids, { multiple: true, include_hidden: false }, status.id
|
|
|
|
.batch-table__row__content
|
|
|
|
.status__content><
|
2018-08-15 17:38:56 +00:00
|
|
|
- if status.proper.spoiler_text.blank?
|
2022-03-26 01:53:34 +00:00
|
|
|
= prerender_custom_emojis(status_content_format(status.proper), status.proper.emojis)
|
2018-08-15 17:38:56 +00:00
|
|
|
- else
|
|
|
|
%details<
|
|
|
|
%summary><
|
2022-03-26 01:53:34 +00:00
|
|
|
%strong> Content warning: #{prerender_custom_emojis(h(status.proper.spoiler_text), status.proper.emojis)}
|
|
|
|
= prerender_custom_emojis(status_content_format(status.proper), status.proper.emojis)
|
2018-04-20 00:28:48 +00:00
|
|
|
|
2022-03-09 08:06:17 +00:00
|
|
|
- unless status.proper.ordered_media_attachments.empty?
|
2022-10-26 11:42:29 +00:00
|
|
|
= render partial: 'admin/reports/media_attachments', locals: { status: status.proper }
|
2018-04-20 00:28:48 +00:00
|
|
|
|
|
|
|
.detailed-status__meta
|
2022-01-17 08:41:33 +00:00
|
|
|
- if status.application
|
|
|
|
= status.application.name
|
|
|
|
·
|
2024-09-20 13:33:26 +00:00
|
|
|
= link_to ActivityPub::TagManager.instance.url_for(status.proper), class: 'detailed-status__datetime', target: stream_link_target, rel: 'noopener noreferrer' do
|
2018-04-20 00:28:48 +00:00
|
|
|
%time.formatted{ datetime: status.created_at.iso8601, title: l(status.created_at) }= l(status.created_at)
|
2022-01-20 12:37:31 +00:00
|
|
|
- if status.edited?
|
|
|
|
·
|
2024-03-15 11:19:00 +00:00
|
|
|
= link_to t('statuses.edited_at_html', date: content_tag(:time, l(status.edited_at), datetime: status.edited_at.iso8601, title: l(status.edited_at), class: 'formatted')),
|
|
|
|
admin_account_status_path(status.account_id, status),
|
|
|
|
class: 'detailed-status__datetime'
|
2019-08-22 19:55:56 +00:00
|
|
|
- if status.discarded?
|
|
|
|
·
|
|
|
|
%span.negative-hint= t('admin.statuses.deleted')
|
2018-04-20 00:28:48 +00:00
|
|
|
·
|
2018-05-12 15:44:15 +00:00
|
|
|
- if status.reblog?
|
2024-08-07 23:08:36 +00:00
|
|
|
= material_symbol('repeat_active')
|
2018-05-12 15:44:15 +00:00
|
|
|
= t('statuses.boosted_from_html', acct_link: admin_account_inline_link_to(status.proper.account))
|
|
|
|
- else
|
2024-09-11 07:47:16 +00:00
|
|
|
= material_symbol visibility_icon(status)
|
2018-05-12 15:44:15 +00:00
|
|
|
= t("statuses.visibilities.#{status.visibility}")
|
|
|
|
- if status.proper.sensitive?
|
2018-04-20 00:28:48 +00:00
|
|
|
·
|
2024-04-23 16:43:49 +00:00
|
|
|
= material_symbol('visibility_off')
|
2018-04-20 00:28:48 +00:00
|
|
|
= t('stream_entries.sensitive_content')
|