Sha256: b92e96f73a3dbcc8d565ccfda28d3c22c1307a7e2baf21f2e34560dccd70380c

Contents?: true

Size: 1.11 KB

Versions: 2

Compression:

Stored size: 1.11 KB

Contents

<%= render :partial => 'admin/shared/product_sub_menu' %>
<h1><%= t("editing_option_type") %></h1>
<%= render 'shared/error_messages', :target => @option_type %>
<%= form_for([:admin, @option_type]) do |f| %>
<fieldset>
  <legend><%= t("editing_option_type") %></legend>
  <%= render :partial => "form", :locals => { :f => f } %>
  <h3><%= t("option_values") %></h3>
  <table class="index">
    <thead data-hook="option_header">
      <tr>
        <th><%= t("name") %></th>
        <th><%= t("display") %></th>
        <th></th>
      </tr>
    </thead>
    <tbody id="option_values">
      <tr id="none" data-hook="option_none">
        <td colspan="3"><%= @option_type.option_values.empty? ? t("none") : "" %></td>
      </tr>
      <%= f.fields_for :option_values do |option_value_form| %>
        <%= render "option_value_fields", :f => option_value_form %>
      <% end %>
    </tbody>
  </table>
  <span id="new_add_option_value" data-hook>
    <%= link_to_add_fields t("add_option_value"), "tbody#option_values", f, :option_values %>
  </span>

  <%= render :partial => 'admin/shared/edit_resource_links' %>
</fieldset>
<% end %>

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
spree_core-0.70.0.rc2 app/views/admin/option_types/edit.html.erb
spree_core-0.70.RC1 app/views/admin/option_types/edit.html.erb