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