何が欠けているのかわからない。まず、手動でナビゲートした場合、これは有効なルートです...
/orientations/1/registrations
これにより、最初のオリエンタイトンに関連付けられたすべての登録が表示されます。今、ビューでこれらのルートへの link_to を作成しようとしています。これが rake routes の出力です...
http://pastie.org/pastes/8440065/text
私の見解では、私はやろうとしています...
<%= link_to "R", orientation_registration_path(orientation) %></li>
...そして私が得ているエラーは...
No route matches
{
:action => "show",
:controller => "registrations",
:orientation_id => #<Orientation
id: 1,
class_date: "2013-10-17",
class_time: "11:30am",
seats: 30,
active: true,
created_at: "2013-10-28 14:22:42",
updated_at: "2013-10-28 14:22:42">
}
私は何が欠けていますか?