Skip to content

Instantly share code, notes, and snippets.

@jonpaul
Created January 10, 2011 15:03
Show Gist options
  • Save jonpaul/772866 to your computer and use it in GitHub Desktop.
Save jonpaul/772866 to your computer and use it in GitHub Desktop.
snippet from show action
<img src="<%= stores.name %>/<%= week.title %>/<%= game.image %>" width="329" height="215" alt="Content Inline" hspace="0" vspace="4" class="inline">
<%= render @games %>
def show
@week = Week.find(params[:id])
@games = @week.games
@stores = @week.stores
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment