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