<%= form.text_field :title, :id => (@photo.new_record?? 'slugify' : nil) %> <%= form.text_field :slug, :id => 'slug' %> <% if @photo.image? %> <%= form.simple_field 'Current Image' do %> <%= image_tag(@photo.image.url(:thumb)) %>
<%= link_to 'Crop Image', crop_gallery_admin_gallery_photo_path(@gallery, @photo) %> <% end %> <% end %> <%= form.file_field :image %> <%= form.text_area :description %> <%= form.submit 'Save'%>