diff options
author | Matt Jankowski <mjankowski@thoughtbot.com> | 2017-04-19 11:19:23 -0400 |
---|---|---|
committer | Eugen <eugen@zeonfederated.com> | 2017-04-19 17:19:23 +0200 |
commit | 708bdd53f17debd55465b1f5eaef4d3129f53545 (patch) | |
tree | 0d92daad9e8b10b8549a5b28210342d4cbf23720 /app/views/accounts | |
parent | 2510119f195974626670a843147641aaf2f391cc (diff) |
Remove unused view files in accounts/ (#2153)
Diffstat (limited to 'app/views/accounts')
-rw-r--r-- | app/views/accounts/followers.html.haml | 12 | ||||
-rw-r--r-- | app/views/accounts/following.html.haml | 12 |
2 files changed, 0 insertions, 24 deletions
diff --git a/app/views/accounts/followers.html.haml b/app/views/accounts/followers.html.haml deleted file mode 100644 index 9e1643b23..000000000 --- a/app/views/accounts/followers.html.haml +++ /dev/null @@ -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 diff --git a/app/views/accounts/following.html.haml b/app/views/accounts/following.html.haml deleted file mode 100644 index 19138b0a4..000000000 --- a/app/views/accounts/following.html.haml +++ /dev/null @@ -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 |