This repository has been archived on 2024-06-09. You can view files and clone it, but cannot push or open issues/pull-requests.
2016-03-19 14:02:30 +01:00
|
|
|
- content_for :page_title do
|
2016-11-15 23:56:03 +01:00
|
|
|
= t('accounts.people_who_follow', name: display_name(@account))
|
2016-03-19 14:02:30 +01:00
|
|
|
|
2017-04-16 16:37:49 +02:00
|
|
|
= render 'header', account: @account
|
2016-03-19 14:02:30 +01:00
|
|
|
|
|
|
|
.accounts-grid
|
|
|
|
- if @followers.empty?
|
2017-04-18 17:15:30 +02:00
|
|
|
= render 'nothing_here'
|
2016-09-24 13:40:42 +02:00
|
|
|
- else
|
2016-11-03 13:28:36 +01:00
|
|
|
= render partial: 'grid_card', collection: @followers, as: :account, cached: true
|
2016-03-19 14:02:30 +01:00
|
|
|
|
2017-04-11 01:11:41 +02:00
|
|
|
= paginate @followers
|