Displaying 1 result from an estimated 1 matches for "chapters_path".
2009 Jun 20
0
AssociationTypeMismatch
...rm.collection_select :chapter_type,
@decodes, :internal_value, :display_value, :prompt => ''Select module
type''
%>
</p>
<p>
<%= chapter_form.submit ''Create'' %>
</p>
<% end %>
<%= link_to ''Back'', chapters_path %>
Controller:
---------------
class ChaptersController < ApplicationController
def create
@chapter = Chapter.new(params[:chapter])
respond_to do |format|
if @chapter.save
flash[:notice] = ''Chapter was successfully created.''
format.html { r...