diff --git a/app/views/users/show_follow.html.erb b/app/views/users/show_follow.html.erb
index 3bf8833c00..8e59e2ef18 100644
--- a/app/views/users/show_follow.html.erb
+++ b/app/views/users/show_follow.html.erb
@@ -2,11 +2,21 @@
<%= @user.username %>
-
- <%= link_to "Followers", followers_path(@user.username),class: "nav-link #{@title=='Followers' ? 'active' : ''}" %>
+ <%= link_to followers_path(@user.username),class: "nav-link #{@title=='Followers' ? 'active' : ''}" do %>
+ Followers
+
+ <%= @user.followers.where(status: 1).length.to_s %>
+
+ <% end %>
-
- <%= link_to "Following", following_path(@user.username), class: "nav-link #{@title=='Following' ? 'active' : ''}" %>
-
+ <%= link_to following_path(@user.username), class: "nav-link #{@title=='Following' ? 'active' : ''}" do %>
+ Following
+
+ <%= @user.following_users.where(status: 1).length.to_s %>
+
+ <% end %>
+
<% if @users.length > 0 %>