Skip to content

Instantly share code, notes, and snippets.

@jbatchelor
Created August 23, 2012 15:18
Show Gist options
  • Save jbatchelor/3437666 to your computer and use it in GitHub Desktop.
Save jbatchelor/3437666 to your computer and use it in GitHub Desktop.
<div class='field'>
<%= f.label :name -%>
<%= f.text_field :name, :class => 'larger widest' -%>
</div>
<div class='field'>
<%= f.label :description -%>
<%= f.text_field :description, :class => 'larger widest' -%>
</div>
<div class='field'>
<%= f.label :image -%>
<%= render :partial => "/refinery/admin/image_picker", :locals => {
:f => f,
:field => :image_id,
:image => f.object.image,
:toggle_image_display => false
}
%>
</div>
<div class='field'>
<%= f.label :background_image -%>
<%= render :partial => "/refinery/admin/image_picker", :locals => {
:f => f,
:field => :background_image_id,
:image => f.object.image,
:toggle_image_display => false
}
%>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment