Guest User

Untitled

a guest
Dec 11th, 2018
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. <%= @user.post.size%>
  2.  
  3. <% size = @user.post.size %>
  4. <%= (size == 0) ? nil : size %>
  5.  
  6. <% size = @post.comments.size %>
  7. <%= (size == 0) ? nil : size %>
  8.  
  9. # Set the variable in
  10. <% size = @user.post.size %>
  11.  
  12. # Display size unless it is zero.
  13. <%= size unless size.zero? %>
  14.  
  15. @post.comments.any?
  16. @user.post.size.nil?
Add Comment
Please, Sign In to add comment