Sha256: 2e38fcc2d1d76f268f2a4efb7319223577c84fe8ab295ada68d2f1d1c8c6ae21
Contents?: true
Size: 1.56 KB
Versions: 11
Compression:
Stored size: 1.56 KB
Contents
<% admin_breadcrumb(link_to plural_resource_name(Spree::Product), spree.admin_products_path) %> <% admin_breadcrumb(link_to plural_resource_name(Spree::OptionType), spree.admin_option_types_path) %> <% admin_breadcrumb(@option_type.name) %> <% content_for :page_actions do %> <li> <span id="new_add_option_value" data-hook> <%= link_to_add_fields Spree.t(:add_option_value), "tbody#option_values", class: 'button' %> </span> </li> <% end %> <%= render partial: 'spree/shared/error_messages', locals: { target: @option_type } %> <%= form_for [:admin, @option_type] do |f| %> <fieldset class="no-border-bottom"> <legend><%= Spree::OptionType.model_name.human %></legend> <%= render partial: 'form', locals: { f: f } %> </fieldset> <fieldset> <legend><%= plural_resource_name(Spree::OptionValue) %></legend> <table class="index sortable" data-hook data-sortable-link="<%= update_values_positions_admin_option_types_url %>"> <thead data-hook="option_header"> <tr> <th colspan="2"><%= Spree::OptionValue.human_attribute_name(:name) %></th> <th><%= Spree::OptionValue.human_attribute_name(:presentation) %></th> <th class="actions"></th> </tr> </thead> <tbody id="option_values"> <%= f.fields_for :option_values, @option_values do |option_value_form| %> <%= render partial: 'option_value_fields', locals: { f: option_value_form } %> <% end %> </tbody> </table> <%= render partial: 'spree/admin/shared/edit_resource_links' %> </fieldset> <% end %>
Version data entries
11 entries across 11 versions & 1 rubygems