Я абсолютно и совершенно новичок в рельсах, поэтому ответ, вероятно, очень прост. Здесь идет:
Моя страница генерирует эту ошибку
NoMethodError in Tasks#new
Showing app/views/tasks/new.erb where line #3 raised:
undefined method `tasks_path' for #
Вот вид:
<% form_for(@task) do |f| %>
<%= f.error_messages %>
<%= f.label :description %>:
<%= f.text_field :description %><br />
<%= f.label :priority %>:
<%= collection_select(:news, :priority_id, Priority.find(:all), :id, :description) %><br />
<%= f.submit "Add Task" %>
<% end %>
Контроллер:
class TasksController < ApplicationController
def index
@all_tasks = Task.find(:all, :order => :id)
end
def new
@task = Task.new
end ...(more)
и модель:
Я не вижу проблемы, но, как я уже сказал, я пока ничего не понимаю.
Спасибо!
class Task < ActiveRecord::Base
validates_presence_of :description
belongs_to :priority
has_and_belongs_to_many :staff
has_and_belongs_to_many :catagory
end