Skip to content

Instantly share code, notes, and snippets.

@brandonhilkert
Created May 2, 2014 02:20
Show Gist options
  • Select an option

  • Save brandonhilkert/7dd850182c6bfa40bf89 to your computer and use it in GitHub Desktop.

Select an option

Save brandonhilkert/7dd850182c6bfa40bf89 to your computer and use it in GitHub Desktop.
<% if @goals.present? %>
<%= render @goals %>
<% else %>
<%= render "no_goals" %>
<% end %>
@dhh

dhh commented May 2, 2014

Copy link
Copy Markdown

<%= render @goals.presence || "no_goals" %>

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment