Sha256: ec5c667e0955c919cf201a1086a235fcd4157dafe18ec220b3cbfd0cea859883

Contents?: true

Size: 1.31 KB

Versions: 5

Compression:

Stored size: 1.31 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"}" if !from_dialog? or @thickbox %>
	</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

5 entries across 5 versions & 1 rubygems

Version Path
refinerycms-0.9.5.12 vendor/plugins/images/app/views/admin/images/_form.html.erb
refinerycms-0.9.5.11 vendor/plugins/images/app/views/admin/images/_form.html.erb
refinerycms-0.9.5.10 vendor/plugins/images/app/views/admin/images/_form.html.erb
refinerycms-0.9.5.9 vendor/plugins/images/app/views/admin/images/_form.html.erb
refinerycms-0.9.5.8 vendor/plugins/images/app/views/admin/images/_form.html.erb