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