2016-03-19 22:02:30 +09:00
|
|
|
- content_for :page_title do
|
2016-11-16 07:56:03 +09:00
|
|
|
= t('accounts.people_who_follow', name: display_name(@account))
|
2016-03-19 22:02:30 +09:00
|
|
|
|
2017-04-16 23:37:49 +09:00
|
|
|
= render 'header', account: @account
|
2016-03-19 22:02:30 +09:00
|
|
|
|
|
|
|
.accounts-grid
|
|
|
|
- if @followers.empty?
|
|
|
|
= render partial: 'nothing_here'
|
2016-09-24 20:40:42 +09:00
|
|
|
- else
|
2016-11-03 21:28:36 +09:00
|
|
|
= render partial: 'grid_card', collection: @followers, as: :account, cached: true
|
2016-03-19 22:02:30 +09:00
|
|
|
|
2017-04-11 08:11:41 +09:00
|
|
|
= paginate @followers
|