my models in Datamapper are:
Project:
require "dm-accepts_nested_attributes"
class Project
include DataMapper::Resource
property :id, Serial
property :project_title, String
has n, :tasks
accepts_nested_attributes_for :tasks
end
Task:
class Task
include DataMapper::Resource
property :id, Serial
property :task_name, String
belongs_to :project
end
Now i wanted to create view for the Project with links for adding tasks. I tried it with nested_form gem and cocoon gem but no use.