blob: 19138b0a4e3e891db419301b4828001e868d7bcd (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
- content_for :page_title do
= t('accounts.people_followed_by', name: display_name(@account))
= render 'header', account: @account
.accounts-grid
- if @following.empty?
= render 'nothing_here'
- else
= render partial: 'grid_card', collection: @following, as: :account, cached: true
= paginate @following
|