Browse Source

Remove unused view files in accounts/ (#2153)

closed-social-glitch-2
Matt Jankowski 7 years ago
committed by Eugen
parent
commit
708bdd53f1
2 changed files with 0 additions and 24 deletions
  1. +0
    -12
      app/views/accounts/followers.html.haml
  2. +0
    -12
      app/views/accounts/following.html.haml

+ 0
- 12
app/views/accounts/followers.html.haml View File

@ -1,12 +0,0 @@
- 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

+ 0
- 12
app/views/accounts/following.html.haml View File

@ -1,12 +0,0 @@
- content_for :page_title do
= t('accounts.people_followed_by', name: display_name(@account))
= render 'header', account: @account
.accounts-grid
- if @following.empty?
= render 'nothing_here'
- else
= render partial: 'grid_card', collection: @following, as: :account, cached: true
= paginate @following

Loading…
Cancel
Save