Sha256: c62bc85da8821c53ad3e131634321f83e6399f7c9673dbaf0f23ea603f152168

Contents?: true

Size: 1.38 KB

Versions: 15

Compression:

Stored size: 1.38 KB

Contents

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

<% content_for :page_actions do %>
  <%= button_link_to Spree.t(:new_prototype), new_object_url, { class: "btn-success", icon: 'add.svg', 'data-update' => 'new_prototype', id: 'new_prototype_link'} %>
<% end if can?(:create, Spree::Prototype) %>

<% if @prototypes.any? %>
  <div class="table-responsive">
    <table class="table" id='listing_prototypes' data-hook>
      <thead>
        <tr data-hook="prototypes_header">
          <th><%= Spree.t(:name) %></th>
          <th class="actions"></th>
        </tr>
      </thead>
      <tbody>
        <% @prototypes.each do |prototype| %>
          <tr id="<%= spree_dom_id prototype %>" data-hook="prototypes_row">
            <td><%= prototype.name %></td>
            <td class="actions actions-2 text-right">
              <%= link_to_edit(prototype, no_text: true, class: 'admin_edit_prototype') if can?(:edit, prototype) %>
              <%= link_to_delete(prototype, no_text: true) if can?(:delete, prototype) %>
            </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::Prototype)) %>,
    <%= link_to Spree.t(:add_one), new_object_url if can?(:create, Spree::Prototype) %>!
  </div>
<% end %>

Version data entries

15 entries across 15 versions & 1 rubygems

Version Path
spree_backend-4.2.7 app/views/spree/admin/prototypes/index.html.erb
spree_backend-4.2.6 app/views/spree/admin/prototypes/index.html.erb
spree_backend-4.2.5 app/views/spree/admin/prototypes/index.html.erb
spree_backend-4.2.4 app/views/spree/admin/prototypes/index.html.erb
spree_backend-4.2.3.1 app/views/spree/admin/prototypes/index.html.erb
spree_backend-4.2.3 app/views/spree/admin/prototypes/index.html.erb
spree_backend-4.2.2 app/views/spree/admin/prototypes/index.html.erb
spree_backend-4.2.1 app/views/spree/admin/prototypes/index.html.erb
spree_backend-4.2.0 app/views/spree/admin/prototypes/index.html.erb
spree_backend-4.2.0.rc5 app/views/spree/admin/prototypes/index.html.erb
spree_backend-4.2.0.rc4 app/views/spree/admin/prototypes/index.html.erb
spree_backend-4.2.0.rc3 app/views/spree/admin/prototypes/index.html.erb
spree_backend-4.2.0.rc2 app/views/spree/admin/prototypes/index.html.erb
spree_backend-4.2.0.rc1 app/views/spree/admin/prototypes/index.html.erb
spree_backend-4.2.0.beta app/views/spree/admin/prototypes/index.html.erb