2017-01-27 21:56:10 -05:00
|
|
|
- content_for :page_title do
|
|
|
|
= @account.acct
|
|
|
|
|
2016-12-04 12:10:40 -05:00
|
|
|
%table.table
|
|
|
|
%tbody
|
|
|
|
%tr
|
2017-04-13 15:49:07 -04:00
|
|
|
%th= t('admin.accounts.username')
|
2016-12-04 12:10:40 -05:00
|
|
|
%td= @account.username
|
|
|
|
%tr
|
2017-04-13 15:49:07 -04:00
|
|
|
%th= t('admin.accounts.domain')
|
2016-12-04 12:10:40 -05:00
|
|
|
%td= @account.domain
|
|
|
|
%tr
|
2017-04-13 15:49:07 -04:00
|
|
|
%th= t('admin.accounts.display_name')
|
2016-12-04 12:10:40 -05:00
|
|
|
%td= @account.display_name
|
|
|
|
|
|
|
|
- if @account.local?
|
|
|
|
%tr
|
2017-04-13 15:49:07 -04:00
|
|
|
%th= t('admin.accounts.email')
|
2016-12-04 12:10:40 -05:00
|
|
|
%td= @account.user.email
|
|
|
|
%tr
|
2017-04-13 15:49:07 -04:00
|
|
|
%th= t('admin.accounts.most_recent_ip')
|
2016-12-04 12:10:40 -05:00
|
|
|
%td= @account.user.current_sign_in_ip
|
2017-02-14 18:22:58 -05:00
|
|
|
%tr
|
2017-04-13 15:49:07 -04:00
|
|
|
%th= t('admin.accounts.most_recent_activity')
|
2017-02-15 20:28:10 -05:00
|
|
|
%td
|
|
|
|
- if @account.user.current_sign_in_at
|
|
|
|
= l @account.user.current_sign_in_at
|
|
|
|
- else
|
|
|
|
Never
|
2016-12-04 12:10:40 -05:00
|
|
|
- else
|
|
|
|
%tr
|
2017-04-13 15:49:07 -04:00
|
|
|
%th= t('admin.accounts.profile_url')
|
2016-12-04 12:10:40 -05:00
|
|
|
%td= link_to @account.url
|
|
|
|
%tr
|
2017-04-13 15:49:07 -04:00
|
|
|
%th= t('admin.accounts.feed_url')
|
2016-12-04 12:10:40 -05:00
|
|
|
%td= link_to @account.remote_url
|
2017-02-14 18:22:58 -05:00
|
|
|
%tr
|
2017-04-13 15:49:07 -04:00
|
|
|
%th= t('admin.accounts.push_subscription_expires')
|
2017-02-14 18:22:58 -05:00
|
|
|
%td
|
|
|
|
- if @account.subscribed?
|
|
|
|
= l @account.subscription_expires_at
|
|
|
|
- else
|
2017-04-13 15:49:07 -04:00
|
|
|
= t('admin.accounts.not_subscribed')
|
2017-02-14 18:22:58 -05:00
|
|
|
%tr
|
2017-04-13 15:49:07 -04:00
|
|
|
%th= t('admin.accounts.salmon_url')
|
2017-02-14 18:22:58 -05:00
|
|
|
%td= link_to @account.salmon_url
|
2016-12-04 12:10:40 -05:00
|
|
|
|
2017-02-14 18:22:58 -05:00
|
|
|
%tr
|
2017-04-13 15:49:07 -04:00
|
|
|
%th= t('admin.accounts.follows')
|
2017-03-31 08:02:07 -04:00
|
|
|
%td= @account.following_count
|
2017-02-14 18:22:58 -05:00
|
|
|
%tr
|
2017-04-13 15:49:07 -04:00
|
|
|
%th= t('admin.accounts.followers')
|
2017-03-31 08:02:07 -04:00
|
|
|
%td= @account.followers_count
|
2017-02-14 18:22:58 -05:00
|
|
|
%tr
|
2017-04-13 15:49:07 -04:00
|
|
|
%th= t('admin.accounts.statuses')
|
2017-03-31 08:02:07 -04:00
|
|
|
%td= @account.statuses_count
|
2017-02-14 18:22:58 -05:00
|
|
|
%tr
|
2017-04-13 15:49:07 -04:00
|
|
|
%th= t('admin.accounts.media_attachments')
|
2017-02-14 18:22:58 -05:00
|
|
|
%td
|
|
|
|
= @account.media_attachments.count
|
|
|
|
= surround '(', ')' do
|
|
|
|
= number_to_human_size @account.media_attachments.sum('file_file_size')
|
2017-04-18 13:36:18 -04: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 12:10:40 -05:00
|
|
|
|
2017-04-16 17:15:58 -04: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'
|
2016-12-06 12:22:59 -05:00
|
|
|
|
2017-04-15 10:44:59 -04: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'
|
|
|
|
|
|
|
|
- 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'
|