Sha256: 19a6869ebdc6363332eeca814bb27165fee4a4e4134f411b0ed0b76b385c4260

Contents?: true

Size: 1.21 KB

Versions: 1

Compression:

Stored size: 1.21 KB

Contents

<% content_for :page_title do %>
  <%= Spree::Prototype.model_name.human(count: :many) %>
<% end %>

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

<% if @prototypes.any? %>
  <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') %>
            <%= link_to_delete(prototype, :no_text => true) %>
          </td>
        </tr>
      <% end %>
    </tbody>
  </table>
<% else %>
  <div class="alert alert-info no-objects-found">
    <%= Spree.t(:no_resource_found, resource: Spree::Prototype.model_name.human(count: :many)) %>,
    <%= link_to Spree.t(:add_one), new_object_url %>!
  </div>
<% end %>

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
spree_backend-3.0.0.rc1 app/views/spree/admin/prototypes/index.html.erb