Sha256: 4921d534a4a3ddc5792ca031fa74a69d033c493c4334e921da527622b0c32f4b

Contents?: true

Size: 1.1 KB

Versions: 8

Compression:

Stored size: 1.1 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

8 entries across 8 versions & 1 rubygems

Version Path
spree_core-0.70.7 app/views/admin/option_types/edit.html.erb
spree_core-0.70.6 app/views/admin/option_types/edit.html.erb
spree_core-0.70.5 app/views/admin/option_types/edit.html.erb
spree_core-0.70.4 app/views/admin/option_types/edit.html.erb
spree_core-0.70.3 app/views/admin/option_types/edit.html.erb
spree_core-0.70.2 app/views/admin/option_types/edit.html.erb
spree_core-0.70.1 app/views/admin/option_types/edit.html.erb
spree_core-0.70.0 app/views/admin/option_types/edit.html.erb