Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2019
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. <% @user ||= current_user %>
  2. <div class="stats">
  3. <a href="<%= following_user_path(@user) %>">
  4. <strong id="following" class="stat">
  5. <%= @user.following.count %>
  6. </strong>
  7. following
  8. </a>
  9. <a href="<%= followers_user_path(@user) %>">
  10. <strong id="followers" class="stat">
  11. <%= @user.followers.count %>
  12. </strong>
  13. followers
  14. </a>
  15. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement