Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I saw something like it somewhere (was specifically if an entity was nil, then don't display the partial), but I can't seem to duplicate the functionality. Is there any way to shorthand the following?

<% if @sales_orders.any? %>                             
<%= render @sales_orders %>                             
<% else %>                             
<%= render 'shared/no_records' %>
<% end %>   

Something like:

<%= render @sales_orders || 'no records found' %>

or (pseudo, but you get the drift):

<%= @sales_orders ? render(@sales_orders) : render('shared/no_records') %> 
share|improve this question

1 Answer

up vote 2 down vote accepted

You're pretty close with your pseudo, I think:

<%= render(@sales_orders.any? ? @sales_orders : 'shared/no_records') %>
share|improve this answer
Hah! So close yet so far away. Much appreciated. – Ted Nov 23 '12 at 0:40

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.