Sha256: dd23cda0d32d7418d0037f44abff79ea6e03a8506e575f4ddba970c8b603348f

Contents?: true

Size: 1.85 KB

Versions: 2

Compression:

Stored size: 1.85 KB

Contents

<%= render :partial => 'admin/shared/product_sub_menu' %>

<%= render :partial => 'admin/shared/product_tabs', :locals => {:current => "Product Properties"} %>

<%= render "shared/error_messages", :target => @product %>

<%= form_for(@product, :url => admin_product_url(@product), :html => { :method => :put }) do |f| %>
  <table class="index">
    <thead>
      <tr data-hook="product_properties_header">
        <th><%= t("property") %></th>
        <th><%= t("value") %></th>
        <th><%= t("action") %></th>
      </tr>
    </thead>
    <tbody id="product_properties" data-hook>
      <%= f.fields_for :product_properties do |pp_form| %>
        <%= render 'product_property_fields', :f => pp_form %>
      <% end %>
    </tbody>
  </table>

  <input type="hidden" name="clear_product_properties" value="true">

  <p class="add_product_properties" data-hook="add_product_properties">
    <%= link_to_add_fields  icon('add') + ' ' + t("add_product_properties"),
                            "tbody#product_properties",
                            f,
                            :product_properties %>

    &nbsp;&nbsp;

    <span id="new_ptype_link">
      <%= link_to t("select_from_prototype"), available_admin_prototypes_url,
                  :remote => true, 'data-update' => "prototypes" %>
    </span>
  </p>
  <div id="prototypes" data-hook></div>
    <%= image_tag "spinner.gif", :plugin=>"spree", :style => "display:none", :id => 'busy_indicator' %>
    <br/>
  <%= render :partial => 'admin/shared/edit_resource_links' %>
<% end %>

<%= javascript_tag do %>
  var properties = [<%= @properties.map{|id| "'#{id}'"}.join(', ') %>];

  $("#product_properties input.autocomplete").live("keydown", function(){
    already_auto_completed = $(this).is('ac_input');
    if (!already_auto_completed) {
      $(this).autocomplete(properties);
      $(this).focus();
    }
  });
<% end %>

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
spree_core-0.70.0.rc2 app/views/admin/product_properties/index.html.erb
spree_core-0.70.RC1 app/views/admin/product_properties/index.html.erb