dumb question but what's the view format in trunk?<br><br>I have a simple router:<br><br>Merb::Router.prepare do |r|<br> # default route, usually you don't want to change this<br> r.default_routes<br> <br> # change this for your home page to be avaiable at /
<br> r.add '/', :controller => 'upload', :action =>'new'<br>end<br clear="all"><br>I have a simple controller which should render the view:<br><br> def new<br> @photo = Photo.new<br><br>
respond_to do |format|<br> format.html { render }<br> end<br> end<br><br>and in my app/views folder I have an upload folder and inside it a new.html.erb file but it doesn't get picked up.<br><br><br>No template matched /Users/matta/rails_projects/my_app/trunk/upload_manager/app/views/upload/new.{}
<br><br>I tried adding a .herb file and .html but it didn't help.<br><br>Thanks,<br><br>-Matt<br><br><br>