Is there a way to set the default behavior for a rendering a collection when it's empty. What I have so far is this:
<%= render @entries %>
which renders the _entry.html.erb partial for each of the entries in the @entries list. I would like to print some sort of message, like: 'No Entries Found'. Is there a way of doing so without explicitly writing the entries partial?