about summary refs log tree commit diff
path: root/app/views/accounts/followers.html.haml
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/accounts/followers.html.haml')
-rw-r--r--app/views/accounts/followers.html.haml14
1 files changed, 14 insertions, 0 deletions
diff --git a/app/views/accounts/followers.html.haml b/app/views/accounts/followers.html.haml
new file mode 100644
index 000000000..75e464957
--- /dev/null
+++ b/app/views/accounts/followers.html.haml
@@ -0,0 +1,14 @@
+- content_for :page_title do
+  People who follow
+  = display_name(@account)
+
+= render partial: 'header'
+
+.accounts-grid
+  - @followers.each do |f|
+    = render partial: 'grid_card', locals: { account: f }
+
+  - if @followers.empty?
+    = render partial: 'nothing_here'
+
+= will_paginate @followers, pagination_options