2017-04-19 13:52:37 +02:00
|
|
|
- content_for :page_title do
|
|
|
|
= t('accounts.people_who_follow', name: display_name(@account))
|
|
|
|
|
2017-04-19 17:17:32 +02:00
|
|
|
- content_for :header_tags do
|
2018-03-09 00:35:07 +01:00
|
|
|
%meta{ name: 'robots', content: 'noindex' }/
|
2017-04-22 17:29:46 +02:00
|
|
|
= render 'accounts/og', account: @account, url: account_followers_url(@account, only_path: false)
|
2017-04-19 17:17:32 +02:00
|
|
|
|
2017-04-19 13:52:37 +02:00
|
|
|
= render 'accounts/header', account: @account
|
|
|
|
|
2018-05-18 02:26:51 +02:00
|
|
|
- if @account.user_hides_network?
|
2018-07-28 19:25:33 +02:00
|
|
|
.nothing-here= t('accounts.network_hidden')
|
|
|
|
- elsif @follows.empty?
|
|
|
|
= nothing_here
|
2018-05-18 02:26:51 +02:00
|
|
|
- else
|
2018-07-28 19:25:33 +02:00
|
|
|
.card-grid
|
|
|
|
= render partial: 'application/card', collection: @follows.map(&:account), as: :account
|
|
|
|
|
|
|
|
= paginate @follows
|