Skip to content

Instantly share code, notes, and snippets.

@kevinquinnyo
Created June 20, 2011 03:02
Show Gist options
  • Save kevinquinnyo/1035058 to your computer and use it in GitHub Desktop.
Save kevinquinnyo/1035058 to your computer and use it in GitHub Desktop.
this doesn't work
#pages_controller
def home
@places = Place.all
@stories = Story.all
...
#views/pages/home.html.erb
...
<% @stories.each do |story| %>
<%= link_to story.title, place_story_path(:id => story.to_param, :place_id => @place.to_param) %></br>
<% end %>
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment