Advertisement
Guest User

Untitled

a guest
Aug 3rd, 2015
173
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. <%= @objects.count if @objects %>
  2.  
  3. <%= @objects.count if @objects then "nothing found" %>
  4.  
  5. <% if @objects %>
  6. <%= @objects.count %>
  7. <% else %>
  8. nothing found
  9. <% end %>
  10.  
  11. <%= count_for(@object) %>
  12.  
  13. <%= "nothing found" unless @objects.try(:length) || 0 > 1 %>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement