Sha256: f585cd6a9e8cd4500f83738b797d604ce9c6db17a48f6a516028ce630b2ea2bb

Contents?: true

Size: 1.83 KB

Versions: 2

Compression:

Stored size: 1.83 KB

Contents

<% content_for :page_title do %>
  <%= plural_resource_name(Spree::OptionType) %>
<% end %>

<% content_for :page_actions do %>
  <span id="new_ot_link">
    <%= button_link_to Spree.t(:new_option_type), new_object_url, { class: "btn-success", icon: 'add.svg', id: 'new_option_type_link' } %>
  </span>
<% end if can?(:create, Spree::OptionType) %>

<div id="new_option_type"></div>

<% if @option_types.any? %>
<div class="table-responsive">
  <table class="table sortable" id="listing_option_types" data-hook data-sortable-link="<%= update_positions_admin_option_types_url %>">
    <thead>
      <tr data-hook="option_header">
        <th class="no-border handel-head"></th>
        <th><%= Spree.t(:name) %></th>
        <th><%= Spree.t(:presentation) %></th>
        <th class="actions"></th>
      </tr>
    </thead>
    <tbody id="sortVert">
      <% @option_types.each do |option_type| %>
        <tr class="spree_option_type <%= cycle('odd', 'even')%>" id="<%= spree_dom_id option_type %>" data-hook="option_row">
          <td class="move-handle text-center">
            <%= svg_icon name: "sort.svg", width: '18', height: '18' %>
          </td>
          <td><%= option_type.name %></td>
          <td class="presentation"><%= option_type.presentation %></td>
          <td class="actions actions-2 text-right">
            <%= link_to_edit(option_type, class: 'admin_edit_option_type', no_text: true) if can?(:edit, option_type) %>
            <%= link_to_delete(option_type, no_text: true) if can?(:delete, option_type) %>
          </td>
        </tr>
      <% end %>
    </tbody>
  </table>
</div>
<% else %>
  <div class="alert alert-info no-objects-found">
    <%= Spree.t(:no_resource_found, resource: plural_resource_name(Spree::OptionType)) %>,
    <%= link_to Spree.t(:add_one), new_object_url if can?(:create, Spree::OptionType) %>!
  </div>
<% end %>

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
spree_backend-4.2.0.rc1 app/views/spree/admin/option_types/index.html.erb
spree_backend-4.2.0.beta app/views/spree/admin/option_types/index.html.erb