The code powering m.abunchtell.com https://m.abunchtell.com
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

29 lines
833 B

  1. - content_for :page_title do
  2. = t('admin.followers.title', acct: @account.acct)
  3. .filters
  4. .filter-subset
  5. %strong= t('admin.accounts.location.title')
  6. %ul
  7. %li= link_to t('admin.accounts.location.local'), admin_account_followers_path(@account.id), class: 'selected'
  8. .back-link{ style: 'flex: 1 1 auto; text-align: right' }
  9. = link_to admin_account_path(@account.id) do
  10. = fa_icon 'chevron-left fw'
  11. = t('admin.followers.back_to_account')
  12. %hr.spacer/
  13. .table-wrapper
  14. %table.table
  15. %thead
  16. %tr
  17. %th= t('admin.accounts.username')
  18. %th= t('admin.accounts.role')
  19. %th= t('admin.accounts.most_recent_ip')
  20. %th= t('admin.accounts.most_recent_activity')
  21. %th
  22. %tbody
  23. = render partial: 'admin/accounts/account', collection: @followers
  24. = paginate @followers