<%= form_for @photo_gallery, :url => path, :builder => TbCore::FormBuilder, :html => {:class => 'form-horizontal', :id => 'admin-photo-gallery-form'} do |f| %> <%= tb_form_errors(f.object) %>
Gallery Info <%= f.tb_text_field :title %>
<%= hidden_field_tag 'spud_photo_gallery[album_ids][]' %>
Select Albums

Selected:

<%= render :partial => 'album', :collection => @photo_gallery.albums %>

Available:

<%= render :partial => 'album', :collection => @photo_gallery.albums_available %>
<%= f.submit "Save Photo Gallery", :class => "btn btn-primary" %> <%= link_to "Cancel", request.referer, :class => "btn btn-default" %>
<% end %>