2017-01-27 18:56:10 -08:00
|
|
|
- content_for :page_title do
|
|
|
|
= @account.acct
|
|
|
|
|
2016-12-04 09:10:40 -08:00
|
|
|
%table.table
|
|
|
|
%tbody
|
|
|
|
%tr
|
2017-04-13 12:49:07 -07:00
|
|
|
%th= t('admin.accounts.username')
|
2016-12-04 09:10:40 -08:00
|
|
|
%td= @account.username
|
|
|
|
%tr
|
2017-04-13 12:49:07 -07:00
|
|
|
%th= t('admin.accounts.domain')
|
2016-12-04 09:10:40 -08:00
|
|
|
%td= @account.domain
|
|
|
|
%tr
|
2017-04-13 12:49:07 -07:00
|
|
|
%th= t('admin.accounts.display_name')
|
2016-12-04 09:10:40 -08:00
|
|
|
%td= @account.display_name
|
|
|
|
|
|
|
|
- if @account.local?
|
|
|
|
%tr
|
2017-04-13 12:49:07 -07:00
|
|
|
%th= t('admin.accounts.email')
|
2017-04-28 06:12:37 -07:00
|
|
|
%td= @account.user_email
|
2016-12-04 09:10:40 -08:00
|
|
|
%tr
|
2017-04-13 12:49:07 -07:00
|
|
|
%th= t('admin.accounts.most_recent_ip')
|
2017-04-28 06:12:37 -07:00
|
|
|
%td= @account.user_current_sign_in_ip
|
2017-02-14 15:22:58 -08:00
|
|
|
%tr
|
2017-04-13 12:49:07 -07:00
|
|
|
%th= t('admin.accounts.most_recent_activity')
|
2017-02-15 17:28:10 -08:00
|
|
|
%td
|
2017-04-28 06:12:37 -07:00
|
|
|
- if @account.user_current_sign_in_at
|
|
|
|
= l @account.user_current_sign_in_at
|
2017-02-15 17:28:10 -08:00
|
|
|
- else
|
|
|
|
Never
|
2016-12-04 09:10:40 -08:00
|
|
|
- else
|
|
|
|
%tr
|
2017-04-13 12:49:07 -07:00
|
|
|
%th= t('admin.accounts.profile_url')
|
2017-04-19 19:00:02 -07:00
|
|
|
%td= link_to @account.url, @account.url
|
2016-12-04 09:10:40 -08:00
|
|
|
%tr
|
2017-04-13 12:49:07 -07:00
|
|
|
%th= t('admin.accounts.feed_url')
|
2017-04-19 19:00:02 -07:00
|
|
|
%td= link_to @account.remote_url, @account.remote_url
|
2017-02-14 15:22:58 -08:00
|
|
|
%tr
|
2017-04-13 12:49:07 -07:00
|
|
|
%th= t('admin.accounts.push_subscription_expires')
|
2017-02-14 15:22:58 -08:00
|
|
|
%td
|
|
|
|
- if @account.subscribed?
|
|
|
|
= l @account.subscription_expires_at
|
|
|
|
- else
|
2017-04-13 12:49:07 -07:00
|
|
|
= t('admin.accounts.not_subscribed')
|
2017-02-14 15:22:58 -08:00
|
|
|
%tr
|
2017-04-13 12:49:07 -07:00
|
|
|
%th= t('admin.accounts.salmon_url')
|
2017-04-19 19:00:02 -07:00
|
|
|
%td= link_to @account.salmon_url, @account.salmon_url
|
2016-12-04 09:10:40 -08:00
|
|
|
|
2017-02-14 15:22:58 -08:00
|
|
|
%tr
|
2017-04-13 12:49:07 -07:00
|
|
|
%th= t('admin.accounts.follows')
|
2017-03-31 05:02:07 -07:00
|
|
|
%td= @account.following_count
|
2017-02-14 15:22:58 -08:00
|
|
|
%tr
|
2017-04-13 12:49:07 -07:00
|
|
|
%th= t('admin.accounts.followers')
|
2017-03-31 05:02:07 -07:00
|
|
|
%td= @account.followers_count
|
2017-02-14 15:22:58 -08:00
|
|
|
%tr
|
2017-04-13 12:49:07 -07:00
|
|
|
%th= t('admin.accounts.statuses')
|
2017-03-31 05:02:07 -07:00
|
|
|
%td= @account.statuses_count
|
2017-02-14 15:22:58 -08:00
|
|
|
%tr
|
2017-04-13 12:49:07 -07:00
|
|
|
%th= t('admin.accounts.media_attachments')
|
2017-02-14 15:22:58 -08:00
|
|
|
%td
|
|
|
|
= @account.media_attachments.count
|
|
|
|
= surround '(', ')' do
|
|
|
|
= number_to_human_size @account.media_attachments.sum('file_file_size')
|
2017-04-18 10:36:18 -07:00
|
|
|
%tr
|
|
|
|
%th= t('.created_reports')
|
|
|
|
%td= link_to pluralize(@account.reports.count, t('.report')), admin_reports_path(account_id: @account.id)
|
|
|
|
%tr
|
|
|
|
%th= t('.targeted_reports')
|
|
|
|
%td= link_to pluralize(@account.targeted_reports.count, t('.report')), admin_reports_path(target_account_id: @account.id)
|
2016-12-04 09:10:40 -08:00
|
|
|
|
2017-04-16 14:15:58 -07:00
|
|
|
- if @account.local?
|
|
|
|
%div{ style: 'float: right' }
|
|
|
|
= link_to t('admin.accounts.reset_password'), admin_account_reset_path(@account.id), method: :create, class: 'button'
|
2017-05-02 12:07:12 -07:00
|
|
|
- if @account.user&.otp_required_for_login?
|
|
|
|
= link_to t('admin.accounts.disable_two_factor_authentication'), admin_user_two_factor_authentication_path(@account.user.id), method: :delete, class: 'button'
|
2016-12-06 09:22:59 -08:00
|
|
|
|
2017-04-15 07:44:59 -07:00
|
|
|
%div{ style: 'float: left' }
|
|
|
|
- if @account.silenced?
|
|
|
|
= link_to t('admin.accounts.undo_silenced'), admin_account_silence_path(@account.id), method: :delete, class: 'button'
|
|
|
|
- else
|
|
|
|
= link_to t('admin.accounts.silence'), admin_account_silence_path(@account.id), method: :post, class: 'button'
|
|
|
|
|
2017-04-23 13:15:10 -07:00
|
|
|
- if @account.local?
|
2017-04-28 06:12:37 -07:00
|
|
|
- unless @account.user_confirmed?
|
2017-04-23 13:15:10 -07:00
|
|
|
= link_to t('admin.accounts.confirm'), admin_account_confirmation_path(@account.id), method: :post, class: 'button'
|
2017-04-22 19:43:42 -07:00
|
|
|
|
2017-04-15 07:44:59 -07:00
|
|
|
- if @account.suspended?
|
|
|
|
= link_to t('admin.accounts.undo_suspension'), admin_account_suspension_path(@account.id), method: :delete, class: 'button'
|
|
|
|
- else
|
|
|
|
= link_to t('admin.accounts.perform_full_suspension'), admin_account_suspension_path(@account.id), method: :post, data: { confirm: t('admin.accounts.are_you_sure') }, class: 'button'
|