mastodon/app/views/admin/accounts/show.html.haml

73 lines
2.3 KiB
Plaintext
Raw Normal View History

- content_for :page_title do
= @account.acct
2016-12-04 18:10:40 +01:00
%table.table
%tbody
%tr
%th= t('admin.accounts.username')
2016-12-04 18:10:40 +01:00
%td= @account.username
%tr
%th= t('admin.accounts.domain')
2016-12-04 18:10:40 +01:00
%td= @account.domain
%tr
%th= t('admin.accounts.display_name')
2016-12-04 18:10:40 +01:00
%td= @account.display_name
- if @account.local?
%tr
%th= t('admin.accounts.email')
2016-12-04 18:10:40 +01:00
%td= @account.user.email
%tr
%th= t('admin.accounts.most_recent_ip')
2016-12-04 18:10:40 +01:00
%td= @account.user.current_sign_in_ip
2017-02-15 00:22:58 +01:00
%tr
%th= t('admin.accounts.most_recent_activity')
%td
- if @account.user.current_sign_in_at
= l @account.user.current_sign_in_at
- else
Never
2016-12-04 18:10:40 +01:00
- else
%tr
%th= t('admin.accounts.profile_url')
2016-12-04 18:10:40 +01:00
%td= link_to @account.url
%tr
%th= t('admin.accounts.feed_url')
2016-12-04 18:10:40 +01:00
%td= link_to @account.remote_url
2017-02-15 00:22:58 +01:00
%tr
%th= t('admin.accounts.push_subscription_expires')
2017-02-15 00:22:58 +01:00
%td
- if @account.subscribed?
= l @account.subscription_expires_at
- else
= t('admin.accounts.not_subscribed')
2017-02-15 00:22:58 +01:00
%tr
%th= t('admin.accounts.salmon_url')
2017-02-15 00:22:58 +01:00
%td= link_to @account.salmon_url
2016-12-04 18:10:40 +01:00
2017-02-15 00:22:58 +01:00
%tr
%th= t('admin.accounts.follows')
%td= @account.following_count
2017-02-15 00:22:58 +01:00
%tr
%th= t('admin.accounts.followers')
%td= @account.followers_count
2017-02-15 00:22:58 +01:00
%tr
%th= t('admin.accounts.statuses')
%td= @account.statuses_count
2017-02-15 00:22:58 +01:00
%tr
%th= t('admin.accounts.media_attachments')
2017-02-15 00:22:58 +01:00
%td
= @account.media_attachments.count
= surround '(', ')' do
= number_to_human_size @account.media_attachments.sum('file_file_size')
2016-12-04 18:10:40 +01:00
2017-02-15 00:22:58 +01:00
- if @account.silenced?
= link_to t('admin.accounts.undo_silenced'), admin_account_silence_path(@account.id), method: :delete, class: 'button'
2017-02-15 00:22:58 +01:00
- else
= link_to t('admin.accounts.silence'), admin_account_silence_path(@account.id), method: :post, class: 'button'
2017-02-15 00:22:58 +01:00
- if @account.suspended?
= link_to t('admin.accounts.undo_suspension'), admin_account_suspension_path(@account.id), method: :delete, class: 'button'
2017-02-15 00:22:58 +01:00
- 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'