> > > undefined method `qvvaluf_path' for #<ActionView::Base:0x4953c34> >
Those methods come from routes.rb. DO you still have map.resources :recipes in there ? Fred > My "index.html.erb" is below and I can't find anything that I might > have forgotten to rename or whatever. Is it maybe the routing that is > going wrong here ? Or something else ? Any help appreciated... > > Thanks, > Mark > > > "index.html.erb": > > <h1>Werken met valuta</h1> > > <table> > <tr> > <th>Valuta</th> > <th>Omschrijving</th> > <th>Koers</th> > <th>Aantal decimalen</th> > </tr> > > <% for qvvaluf in @qvvalup %> > <tr> > <td><%=h qvvaluf.qvqvcode %></td> > <td><%=h qvvaluf.qvqvomsc %></td> > <td><%=h qvvaluf.qvqvkoer %></td> > <td><%=h qvvaluf.qvqvaant %></td> > <td><%= link_to 'Show', qvvaluf %></td> > <td><%= link_to 'Edit', edit_qvvaluf_path(qvvaluf) %></td> > <td><%= link_to 'Destroy', qvvaluf, :confirm => 'Are you > sure?', :method => :delete %></td> > </tr> > <% end %> > </table> > > <br /> > > <%= link_to 'New qvvaluf', new_qvvaluf_path %> > -- > Posted via http://www.ruby-forum.com/. > > > --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---

