Hello, I have a nested model form for PhotoAlbums. The form works fine
via the standard html. But what I need to do is render it as a partial
in another page it's erroring: "No route matches
{:action=>"create", :controller=>"photo_albums"}"

The models:

Projects
  has_many :photo_albums

PhotoAlbums
  belongs_to :project
  has_many :photos

Photos
  belongs_to :photo_album

Controller:
  def create
    @project = Project.find(params[:project_id])
    @photoalbum = PhotoAlbum.create(params[:photo_album])
  end

Here is the working form which loads and works find via HTML:

<% form_for [:project, @photoalbum], :html => { :multipart => true }
do |f| %>
        <div class="field">
        <%= f.label :title %><br />
                <%= f.text_field :title %>
        </div>

        <% f.fields_for :photos do |builder| %>
                <% if builder.object.new_record? %>
                        <%= builder.label :photo, "photo File" %>
                        <%= builder.file_field :photo %>
                <% end %>
        <% end %>

<% end %>

The issue I'm having, is that to render this form as a partial in a
view in another page. I'm using the following:

   <% @photoalbum = PhotoAlbum.new %>
   <%= render :partial => "photo_albums/form",  :locals =>
{:photoalbum => @photoalbum}  %>

I checked by Rake Routes, And I do have it there:
project_photo_albums POST   /projects/:project_id/
photo_albums(.:format)
{:controller=>"photo_albums", :action=>"create"}


Thoughts? thank you

-- 
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Talk" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-talk?hl=en.

Reply via email to