<%= fields_for "photos[photo]", photo, :index => photo.id do |p|%>
<%= link_to (image_tag photo.file.collection.url), photo.file.single.url, {:target=> "_blank"} %>
<%= p.label :title %> <%= p.text_field :title, :class => "larger" %>
<%= p.label :description %> <%= p.text_area :description, :rows => "5", :cols=> "57" %>
<%= p.label :longitude, :tooltip=> t('.use_decimal_format') %> <%= p.text_field :longitude, :size=> 13 %> <%= p.label :latitude , :tooltip=> t('.use_decimal_format') %> <%= p.text_field :latitude, :size=> 13 %>
<%= render :partial => "form_fields_actions", :locals => { :photo => photo } %>
<% end%>