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