Sha256: 17a34f0553e93469d3e83e2786a712cf3c3207d3302c3e9a2938a99dc95a9838

Contents?: true

Size: 447 Bytes

Versions: 1

Compression:

Stored size: 447 Bytes

Contents

<%= 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)) %>
    <br/>
    <%= 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'%>

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
sofa_gallery-0.0.0 app/views/gallery_admin/photos/_form.html.erb