Sha256: c507a21b3c261fe003861795408e4cc7d0ebfa2de2441b6c3fe7aa8929fdfc57

Contents?: true

Size: 1.04 KB

Versions: 9

Compression:

Stored size: 1.04 KB

Contents

<%= render :partial => 'admin/shared/product_sub_menu' %>
<h1><%= t("editing_option_type") %></h1>
<%= render 'shared/error_messages', :target => @option_type %>
<%= form_for(@option_type, :url => object_url, :html => { :method => :put }) do |f| %>
<fieldset>
  <legend><%= t("editing_option_type") %></legend>
  <%= render :partial => "form", :locals => { :f => f } %>
  <h3><%= t("option_values") %></h3>
  <table class="index">
    <thead>
      <tr>
        <th><%= t("name") %></th>
        <th><%= t("display") %></th>
        <th></th>
      </tr>
    </thead>
    <tbody id="option_values">
      <tr id="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>
  <%= link_to_add_fields t("add_option_value"), "tbody#option_values", f, :option_values %>

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

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
spree_core-0.30.2 app/views/admin/option_types/edit.html.erb
spree_core-0.40.4 app/views/admin/option_types/edit.html.erb
spree_core-0.40.3 app/views/admin/option_types/edit.html.erb
spree_core-0.40.2 app/views/admin/option_types/edit.html.erb
spree_core-0.40.1 app/views/admin/option_types/edit.html.erb
spree_core-0.40.0 app/views/admin/option_types/edit.html.erb
spree_core-0.30.1 app/views/admin/option_types/edit.html.erb
spree_core-0.30.0 app/views/admin/option_types/edit.html.erb
spree_core-0.30.0.beta1 app/views/admin/option_types/edit.html.erb