Sha256: d4e0cf6a9a0350fe4d8c5b0ef1375f95c2ed141b469be4633ae5799f3048c72f

Contents?: true

Size: 1.37 KB

Versions: 3

Compression:

Stored size: 1.37 KB

Contents

<h2>Variations</h2>
<%=error_message_on :product, :variations %>
<table class="basic-table">
	<thead>
		<tr>
			<th>Options</th>
			<th>Action</th>
		</tr>
	</thead>
	<tbody>
		<% @product.variations.each do |v| %>
			<tr>
				<td><%= variation_options v %></td>
				<td>
				  <%= link_to_remote "Remove",
				                     :url => {:action => 'delete_variation', :id=> @product, :variation_id => v},
				                     :before => "Element.show('busy_indicator')", 
				                     :complete => "Element.hide('busy_indicator')",
				                     :update => 'variation-listing' %>
				</td>
			</tr>
		<% end %>
		<% if @product.variations.empty? %>
			<tr>
				<td colspan="3">None Available.</td>
			</tr>
		<% end %>
	</tbody>
</table>
<% unless @product.new_record? or @product.selected_options.empty? %>
  <span id="new-var-link">
	  <%= link_to_remote "New Product Variation",
	                     :url => {:controller => 'products', :action => 'new_variation', :id=> @product},
	                     :before => "Element.hide('new-var-link');Element.show('var_busy_indicator')", 
	                     :complete => "Element.hide('var_busy_indicator')",
	                     :update => 'new-variation' %>
  </span>
	<%= image_tag "spinner.gif", :plugin=>"spree", :style => "display:none", :id => 'var_busy_indicator' %>
<% end %>

<div id="new-variation"></div>

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
spree-0.0.6 starter-app/vendor/plugins/spree/app/views/admin/products/_variations.rhtml
spree-0.0.5 starter-app/vendor/plugins/spree/app/views/admin/products/_variations.rhtml
spree-0.0.7 starter-app/vendor/plugins/spree/app/views/admin/products/_variations.rhtml