Displaying 1 result from an estimated 1 matches for "chapterscontrol".
2009 Jun 20
0
AssociationTypeMismatch
...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 { redirect_to(@chapter) }
format.xml { render :xml =...