Re: [Rails] Re: rendering partial problem.

2012-02-22 Thread Valery Kvon
On 23.02.2012, at 0:16, Roger Patrick wrote: > > I don't really understand the missing partial part. I have already > uploaded my search_controller and show.html classes. I have below my > search.rb model file if it is of any use: <%= render @search.games %> means you have partial file: --

[Rails] Re: rendering partial problem.

2012-02-22 Thread Roger Patrick
Valery Kvon wrote in post #1048293: >> Showing C:/finalproject/app/views/searches/show.html.erb where line #3 >> raised: >> >> Missing partial games/game with {:handlers=>[:erb, :builder, :coffee], >> > > What about Missing partial games/game (/views/games/_game.html.erb) ? :) in my games view fol

Re: [Rails] Re: rendering partial problem.

2012-02-22 Thread Javier Quarite
On Wed, Feb 22, 2012 at 2:15 PM, Roger Patrick wrote: > > class SearchesController < ApplicationController > def new >@search = Search.new > end > > def create >@search = Search.new(params[:search]) >if @search.save > redirect_to @search, :notice => "Successfully created searc

[Rails] Re: rendering partial problem.

2012-02-22 Thread Roger Patrick
Javier Quarite wrote in post #1048286: > On Wed, Feb 22, 2012 at 2:02 PM, Roger Patrick > wrote: > >> Missing partial games/game with {:handlers=>[:erb, :builder, :coffee], >> >> Any ideas? >> >> Thanks >> R.Patrick >> >> > What do you have in your controller? Searches#show > > > Javier Q class S