Sha256: 28b226d127f563f0e8fbc8c319f9bf32a693485ac77ac38a7efb140986a670ff

Contents?: true

Size: 1.94 KB

Versions: 10

Compression:

Stored size: 1.94 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><%= Spree.t(:filterable) %></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><%= active_badge(option_type.filterable) %></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

10 entries across 10 versions & 1 rubygems

Version Path
spree_backend-4.2.7 app/views/spree/admin/option_types/index.html.erb
spree_backend-4.2.6 app/views/spree/admin/option_types/index.html.erb
spree_backend-4.2.5 app/views/spree/admin/option_types/index.html.erb
spree_backend-4.2.4 app/views/spree/admin/option_types/index.html.erb
spree_backend-4.2.3.1 app/views/spree/admin/option_types/index.html.erb
spree_backend-4.2.3 app/views/spree/admin/option_types/index.html.erb
spree_backend-4.2.2 app/views/spree/admin/option_types/index.html.erb
spree_backend-4.2.1 app/views/spree/admin/option_types/index.html.erb
spree_backend-4.2.0 app/views/spree/admin/option_types/index.html.erb
spree_backend-4.2.0.rc5 app/views/spree/admin/option_types/index.html.erb