2016-03-19 08:02:30 -05:00
|
|
|
- content_for :page_title do
|
2016-11-15 16:56:03 -06:00
|
|
|
= t('accounts.people_who_follow', name: display_name(@account))
|
2016-03-19 08:02:30 -05:00
|
|
|
|
|
|
|
= render partial: 'header'
|
|
|
|
|
|
|
|
.accounts-grid
|
|
|
|
- if @followers.empty?
|
|
|
|
= render partial: 'nothing_here'
|
2016-09-24 06:40:42 -05:00
|
|
|
- else
|
2016-11-03 07:28:36 -05:00
|
|
|
= render partial: 'grid_card', collection: @followers, as: :account, cached: true
|
2016-03-19 08:02:30 -05:00
|
|
|
|
|
|
|
= will_paginate @followers, pagination_options
|