|
|
- - content_for :page_title do
- = @account.acct
-
- %table.table
- %tbody
- %tr
- %th Username
- %td= @account.username
- %tr
- %th Domain
- %td= @account.domain
- %tr
- %th Display name
- %td= @account.display_name
-
- - if @account.local?
- %tr
- %th E-mail
- %td= @account.user.email
- %tr
- %th Most recent IP
- %td= @account.user.current_sign_in_ip
- %tr
- %th Most recent activity
- %td
- - if @account.user.current_sign_in_at
- = l @account.user.current_sign_in_at
- - else
- Never
- - else
- %tr
- %th Profile URL
- %td= link_to @account.url
- %tr
- %th Feed URL
- %td= link_to @account.remote_url
- %tr
- %th PuSH subscription expires
- %td
- - if @account.subscribed?
- = l @account.subscription_expires_at
- - else
- Not subscribed
- %tr
- %th Salmon URL
- %td= link_to @account.salmon_url
-
- %tr
- %th Follows
- %td= @account.following_count
- %tr
- %th Followers
- %td= @account.followers_count
- %tr
- %th Statuses
- %td= @account.statuses_count
- %tr
- %th Media attachments
- %td
- = @account.media_attachments.count
- = surround '(', ')' do
- = number_to_human_size @account.media_attachments.sum('file_file_size')
-
- - if @account.silenced?
- = link_to 'Undo silence', unsilence_admin_account_path(@account.id), method: :post, class: 'button'
- - else
- = link_to 'Silence', silence_admin_account_path(@account.id), method: :post, class: 'button'
-
- - if @account.suspended?
- = link_to 'Undo suspension', unsuspend_admin_account_path(@account.id), method: :post, class: 'button'
- - else
- = link_to 'Perform full suspension', suspend_admin_account_path(@account.id), method: :post, data: { confirm: 'Are you sure?' }, class: 'button'
|