blob: 49349102017dac6933ad6db91fb8ba26e1c22c4a (
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 partial: 'header'
.accounts-grid
- if @followers.empty?
= render partial: 'nothing_here'
- else
= render partial: 'grid_card', collection: @followers, as: :account, cached: true
= will_paginate @followers, pagination_options
|