2017-01-28 03:56:10 +01:00
|
|
|
- content_for :page_title do
|
2022-03-22 10:07:11 +01:00
|
|
|
= @account.pretty_acct
|
2017-01-28 03:56:10 +01:00
|
|
|
|
2020-12-15 17:23:58 +01:00
|
|
|
- if @account.instance_actor?
|
|
|
|
.flash-message.notice
|
|
|
|
%strong= t('accounts.instance_actor_flash')
|
|
|
|
|
2018-12-28 03:38:41 +01:00
|
|
|
= render 'application/card', account: @account
|
|
|
|
|
2019-09-09 14:15:52 +02:00
|
|
|
- account = @account
|
|
|
|
- fields = account.fields
|
2021-11-26 05:58:18 +01:00
|
|
|
- unless fields.empty? && account.note.blank?
|
2019-09-09 14:15:52 +02:00
|
|
|
.admin-account-bio
|
2021-11-26 05:58:18 +01:00
|
|
|
- unless fields.empty?
|
2019-09-09 14:15:52 +02:00
|
|
|
%div
|
|
|
|
.account__header__fields
|
|
|
|
- fields.each do |field|
|
|
|
|
%dl
|
2022-03-26 02:53:34 +01:00
|
|
|
%dt.emojify{ title: field.name }= prerender_custom_emojis(h(field.name), account.emojis)
|
2019-09-09 14:15:52 +02:00
|
|
|
%dd{ title: field.value, class: custom_field_classes(field) }
|
|
|
|
- if field.verified?
|
|
|
|
%span.verified__mark{ title: t('accounts.link_verified_on', date: l(field.verified_at)) }
|
|
|
|
= fa_icon 'check'
|
2022-03-28 01:17:17 +02:00
|
|
|
= prerender_custom_emojis(account_field_value_format(field, with_rel_me: false), account.emojis)
|
2019-09-09 14:15:52 +02:00
|
|
|
|
2020-02-17 16:38:59 +01:00
|
|
|
- if account.note.present?
|
|
|
|
%div
|
2022-03-28 01:17:17 +02:00
|
|
|
.account__header__content.emojify= prerender_custom_emojis(account_bio_format(account), account.emojis)
|
2019-09-09 14:15:52 +02:00
|
|
|
|
2023-10-16 18:02:15 +02:00
|
|
|
= render 'admin/accounts/counters', account: @account
|
2018-12-28 03:38:41 +01:00
|
|
|
|
2021-12-17 23:02:14 +01:00
|
|
|
- if @account.local? && @account.user.nil?
|
2023-10-03 15:00:40 +02:00
|
|
|
= link_to t('admin.accounts.unblock_email'), unblock_email_admin_account_path(@account.id), method: :post, class: 'button' if can?(:unblock_email, @account) && CanonicalEmailBlock.exists?(reference_account_id: @account.id)
|
2021-12-17 23:02:14 +01:00
|
|
|
- else
|
2017-09-12 23:06:10 +02:00
|
|
|
.table-wrapper
|
2018-05-05 23:06:29 +02:00
|
|
|
%table.table.inline-table
|
2017-09-12 23:06:10 +02:00
|
|
|
%tbody
|
2018-12-28 03:38:41 +01:00
|
|
|
- if @account.local?
|
2023-10-16 18:02:15 +02:00
|
|
|
= render 'admin/accounts/local_account', account: @account
|
2018-12-28 03:38:41 +01:00
|
|
|
- else
|
2023-10-16 18:02:15 +02:00
|
|
|
= render 'admin/accounts/remote_account', account: @account, domain_block: @domain_block
|
2020-09-15 14:37:58 +02:00
|
|
|
|
2023-10-16 18:02:15 +02:00
|
|
|
= render 'admin/accounts/buttons', account: @account, deletion_request: @deletion_request
|
2020-04-28 19:39:16 +02:00
|
|
|
|
2018-12-28 03:38:41 +01:00
|
|
|
%hr.spacer/
|
2018-05-05 23:06:29 +02:00
|
|
|
|
2018-12-28 03:38:41 +01:00
|
|
|
- unless @warnings.empty?
|
2022-02-14 21:27:53 +01:00
|
|
|
|
|
|
|
%h3= t 'admin.accounts.previous_strikes'
|
|
|
|
|
|
|
|
%p= t('admin.accounts.previous_strikes_description_html', count: @account.previous_strikes_count)
|
|
|
|
|
|
|
|
.account-strikes
|
|
|
|
= render @warnings
|
Add moderation warnings (#9519)
* Add moderation warnings
Replace individual routes for disabling, silencing, and suspending
a user, as well as the report update route, with a unified account
action controller that allows you to select an action (none,
disable, silence, suspend) as well as whether it should generate an
e-mail notification with optional custom text. That notification,
with the optional custom text, is saved as a warning.
Additionally, there are warning presets you can configure to save
time when performing the above.
* Use Account#local_username_and_domain
2018-12-22 20:02:09 +01:00
|
|
|
|
2018-12-28 03:38:41 +01:00
|
|
|
%hr.spacer/
|
Add moderation warnings (#9519)
* Add moderation warnings
Replace individual routes for disabling, silencing, and suspending
a user, as well as the report update route, with a unified account
action controller that allows you to select an action (none,
disable, silence, suspend) as well as whether it should generate an
e-mail notification with optional custom text. That notification,
with the optional custom text, is saved as a warning.
Additionally, there are warning presets you can configure to save
time when performing the above.
* Use Account#local_username_and_domain
2018-12-22 20:02:09 +01:00
|
|
|
|
2022-02-14 21:27:53 +01:00
|
|
|
%h3= t 'admin.reports.notes.title'
|
2017-10-07 20:26:43 +02:00
|
|
|
|
2022-02-14 21:27:53 +01:00
|
|
|
%p= t 'admin.reports.notes_description_html'
|
2017-10-07 20:26:43 +02:00
|
|
|
|
2022-02-14 21:27:53 +01:00
|
|
|
.report-notes
|
|
|
|
= render partial: 'admin/report_notes/report_note', collection: @moderation_notes
|
|
|
|
|
|
|
|
= simple_form_for @account_moderation_note, url: admin_account_moderation_notes_path do |f|
|
2018-12-28 03:38:41 +01:00
|
|
|
= f.hidden_field :target_account_id
|
2017-10-07 20:26:43 +02:00
|
|
|
|
2022-02-14 21:27:53 +01:00
|
|
|
.field-group
|
|
|
|
= f.input :content, placeholder: t('admin.reports.notes.placeholder'), rows: 6
|
|
|
|
|
2018-12-28 03:38:41 +01:00
|
|
|
.actions
|
|
|
|
= f.button :button, t('admin.account_moderation_notes.create'), type: :submit
|
2020-12-15 06:28:14 +01:00
|
|
|
|
|
|
|
%hr.spacer/
|
|
|
|
|
2023-10-25 14:38:01 +02:00
|
|
|
- if @account.user&.invite_request&.text.present?
|
2023-03-15 04:15:36 +01:00
|
|
|
.speech-bubble
|
|
|
|
.speech-bubble__bubble
|
2020-12-15 06:28:14 +01:00
|
|
|
= @account.user&.invite_request&.text
|
2023-03-15 04:15:36 +01:00
|
|
|
.speech-bubble__owner
|
2020-12-15 06:28:14 +01:00
|
|
|
= admin_account_link_to @account
|
|
|
|
= t('admin.accounts.invite_request_text')
|