開発者とタスクの 2 つのモデルがあります。
class Developer < ActiveRecord::Base
attr_accessible :address, :comment, :email, :name, :nit, :phone, :web
has_many :assignments
has_many :tasks, :through => :assignments
end
class Task < ActiveRecord::Base
attr_accessible :description, :name, :sprint_id, :developer_ids
has_many :assignments
has_many :developers, :through => :assignments
end
class Assignment < ActiveRecord::Base
attr_accessible :accomplished_time, :developer_id, :estimated_time, :status, :task_id
belongs_to :task
belongs_to :developer
end
割り当てテーブルを追加して関係を管理しているので、特に 1 つのタスクに多くの開発者を追加できます。また、「estimated_time」など、結合テーブルに追加した他のフィールドも操作できるようにしたいと考えています。 achievement_time'...など...Simple_formで得たのは`
<%= simple_form_for [@sprint,@task], :html => { :class => 'form-horizontal' } do |f| %>
<%= f.input :name %>
<%= f.input :description %>
<%= f.association :developers, :as => :check_boxes %>
<div class="form-actions">
<%= f.button :submit, :class => 'btn-primary' %>
<%= link_to t('.cancel', :default => t("helpers.links.cancel")),
project_sprint_path(@sprint.project_id,@sprint), :class => 'btn' %>
</div>
<% end %>`
これにより、開発者を選択することしかできません。ここで Estimated_time フィールドを変更できるようにしたいと考えています。
助言がありますか?