Sha256: 608ea93afddef4f7165720a97a843277ca8f823c90ea43d6b8d0df12037e50fe

Contents?: true

Size: 1.28 KB

Versions: 1

Compression:

Stored size: 1.28 KB

Contents

<%= error_messages_for :image %>

<% form_for [:admin, @image], :url => @url_override || @url, 
															:html => {:multipart => true, :style => 'float: left; width: 70%'} do |f| %>
	<div class='field'>
		<%= f.label :uploaded_data, 'Image' %>
		<% if params[:action] =~ /(edit)|(update)/ %>
			Use current image
			<em>or</em>, replace it with this one... 
		<% end %>
		<%= f.file_field :uploaded_data %>
	</div>
	<div class='form-actions'>
		<%= f.submit 'Save', :id => "submit_button" %>
		or 
		<%= link_to "Cancel", admin_images_url, :title => "Cancelling will lose all changes you've made to this image", :class => 'close_dialog' %>
	</div>

  <% if @thickbox %>
  	<input type='hidden' name='thickbox' value='<%= @thickbox %>' />
  	<input type='hidden' name='field' value='<%= @field %>' />
  	<input type='hidden' name='update_image' value='<%= @update_image %>' />
  	<input type='hidden' name='thumbnail' value='<%= @thumbnail %>' />
  	<input type='hidden' name='callback' value='<%= @callback %>' />
		<input type='hidden' name='conditions' value='<%= @conditions %>' >
	<% end %>
<% end %>

<% if params[:action] =~ /(edit)|(update)/ %>
	<div style='float: right; width: 25%;'>
		<label>Current Image</label>
		<%= image_fu @image, :medium, { :class => "brown_border" } %>
	</div>
<% end %>

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
refinerycms-0.9.5.5 vendor/plugins/images/app/views/admin/images/_form.html.erb