2017-01-27 21:56:10 -05:00
|
|
|
- content_for :page_title do
|
2022-03-22 05:07:11 -04:00
|
|
|
= @account.pretty_acct
|
2017-01-27 21:56:10 -05:00
|
|
|
|
2020-12-15 11:23:58 -05:00
|
|
|
- if @account.instance_actor?
|
|
|
|
.flash-message.notice
|
|
|
|
%strong= t('accounts.instance_actor_flash')
|
|
|
|
|
2018-12-27 21:38:41 -05:00
|
|
|
= render 'application/card', account: @account
|
|
|
|
|
2019-09-09 08:15:52 -04:00
|
|
|
- account = @account
|
|
|
|
- fields = account.fields
|
2021-11-25 23:58:18 -05:00
|
|
|
- unless fields.empty? && account.note.blank?
|
2019-09-09 08:15:52 -04:00
|
|
|
.admin-account-bio
|
2021-11-25 23:58:18 -05:00
|
|
|
- unless fields.empty?
|
2019-09-09 08:15:52 -04:00
|
|
|
%div
|
|
|
|
.account__header__fields
|
|
|
|
- fields.each do |field|
|
|
|
|
%dl
|
2022-03-25 21:53:34 -04:00
|
|
|
%dt.emojify{ title: field.name }= prerender_custom_emojis(h(field.name), account.emojis)
|
2019-09-09 08:15:52 -04: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-27 19:17:17 -04:00
|
|
|
= prerender_custom_emojis(account_field_value_format(field, with_rel_me: false), account.emojis)
|
2019-09-09 08:15:52 -04:00
|
|
|
|
2020-02-17 10:38:59 -05:00
|
|
|
- if account.note.present?
|
|
|
|
%div
|
2022-03-27 19:17:17 -04:00
|
|
|
.account__header__content.emojify= prerender_custom_emojis(account_bio_format(account), account.emojis)
|
2019-09-09 08:15:52 -04:00
|
|
|
|
2023-10-16 12:02:15 -04:00
|
|
|
= render 'admin/accounts/counters', account: @account
|
2018-12-27 21:38:41 -05:00
|
|
|
|
2021-12-17 17:02:14 -05:00
|
|
|
- if @account.local? && @account.user.nil?
|
2023-10-03 09:00:40 -04: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 17:02:14 -05:00
|
|
|
- else
|
2017-09-12 17:06:10 -04:00
|
|
|
.table-wrapper
|
2018-05-05 17:06:29 -04:00
|
|
|
%table.table.inline-table
|
2017-09-12 17:06:10 -04:00
|
|
|
%tbody
|
2018-12-27 21:38:41 -05:00
|
|
|
- if @account.local?
|
2023-10-16 12:02:15 -04:00
|
|
|
= render 'admin/accounts/local_account', account: @account
|
2018-12-27 21:38:41 -05:00
|
|
|
- else
|
2023-10-16 12:02:15 -04:00
|
|
|
= render 'admin/accounts/remote_account', account: @account, domain_block: @domain_block
|
2020-09-15 08:37:58 -04:00
|
|
|
|
2023-10-16 12:02:15 -04:00
|
|
|
= render 'admin/accounts/buttons', account: @account, deletion_request: @deletion_request
|
2020-04-28 13:39:16 -04:00
|
|
|
|
2018-12-27 21:38:41 -05:00
|
|
|
%hr.spacer/
|
2018-05-05 17:06:29 -04:00
|
|
|
|
2018-12-27 21:38:41 -05:00
|
|
|
- unless @warnings.empty?
|
2022-02-14 15:27:53 -05: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 14:02:09 -05:00
|
|
|
|
2018-12-27 21:38:41 -05: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 14:02:09 -05:00
|
|
|
|
2022-02-14 15:27:53 -05:00
|
|
|
%h3= t 'admin.reports.notes.title'
|
2017-10-07 14:26:43 -04:00
|
|
|
|
2022-02-14 15:27:53 -05:00
|
|
|
%p= t 'admin.reports.notes_description_html'
|
2017-10-07 14:26:43 -04:00
|
|
|
|
2022-02-14 15:27:53 -05: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-27 21:38:41 -05:00
|
|
|
= f.hidden_field :target_account_id
|
2017-10-07 14:26:43 -04:00
|
|
|
|
2022-02-14 15:27:53 -05:00
|
|
|
.field-group
|
|
|
|
= f.input :content, placeholder: t('admin.reports.notes.placeholder'), rows: 6
|
|
|
|
|
2018-12-27 21:38:41 -05:00
|
|
|
.actions
|
|
|
|
= f.button :button, t('admin.account_moderation_notes.create'), type: :submit
|
2020-12-15 00:28:14 -05:00
|
|
|
|
|
|
|
%hr.spacer/
|
|
|
|
|
|
|
|
- if @account.user&.invite_request&.text&.present?
|
2023-03-14 23:15:36 -04:00
|
|
|
.speech-bubble
|
|
|
|
.speech-bubble__bubble
|
2020-12-15 00:28:14 -05:00
|
|
|
= @account.user&.invite_request&.text
|
2023-03-14 23:15:36 -04:00
|
|
|
.speech-bubble__owner
|
2020-12-15 00:28:14 -05:00
|
|
|
= admin_account_link_to @account
|
|
|
|
= t('admin.accounts.invite_request_text')
|