Newbie question: missing template

Hi

I’m new to this forum and new to Rails so excuse me if this is a daft
question.

I’m following the ONLamp.com tuturial and all has been well untill
changing the template for the recipes. I have followed the instructions
and added this code to the controller:

class RecipeController < ApplicationController
scaffold :recipe
def list
@recipes = Recipe.find_all
end
end

I have also created the list.rhtml file to the
C:\rails\cookbook\app\views\recipe directory using the html supplied.

However I now get this error when trying to view the recipe list:
Template is missing

Missing template ./script/…/config/…/app/views/recipe/list.rhtml

I have tried re-doing all the above, and restarting the server…any
ideas?

TIA
A

Sorry glazed over the part where you said you had it, oops…

You need to have a list.rhtml file in your views/recipe/ directory.

Rob

Rob M. wrote:

Sorry glazed over the part where you said you had it, oops…

no problem - i stil acnt work it out. feel like i’m missing a really
obviuos point!

A

Hi Angela,

Angela Hilton wrote:

However I now get this error when trying to view the recipe list:
Template is missing

Missing template ./script/…/config/…/app/views/recipe/list.rhtml

If you’re using Windows, I recommend you make doubly sure that your file
is
really named list.rhtml.

I’ve seen folks have problems where Explorer was not set to the Detail
view.
They’d be seeing, for example, list.rhtml but when they set Explorer to
the
Detail view they could see that the real name was list.rhtml.txt or
something. Fire back if that’s not the problem.

Best regards,
Bill

Hmmm, what does your directory structure look like inside of /apps?