Sha256: 512ad8b920e7ea367d7c3d7820cd3a6e68de87af5b597ff27d69b0f557a7372f

Contents?: true

Size: 1.3 KB

Versions: 11

Compression:

Stored size: 1.3 KB

Contents

<%= render partial: 'spree/admin/shared/shipping_tabs', locals: { current: 'Providers' } %>

<% admin_breadcrumb("Provider") %>

<% content_for :page_actions do %>
  <li>
    <%= link_to "Novo Provider", new_admin_solidus_tec_estimator_provider_path, class: 'btn btn-primary' %>
  </li>
<% end %>

<% if @providers.any? %>
<table class="index">
  <colgroup>
    <col style="width: 85%">
    <col style="width: 15%">
  </colgroup>
  <thead>
    <tr data-hook="categories_header">
      <th><%= "Providers" %></th>
      <th class="actions"></th>
    </tr>
  </thead>
  <tbody>
    <% @providers.each do |provider| %>
    <tr id="<%= spree_dom_id provider %>" data-hook="category_row">
      <td><%= provider.name %></td>
      <td class="actions">
        <% if can?(:update, provider) %>

          <%= link_to "", edit_admin_solidus_tec_estimator_provider_path(provider.id), class: "icon_link with-tip fa fa-edit no-text"%>

          <%= link_to "", admin_solidus_tec_estimator_provider_path(provider.id), method: :delete, data: { confirm: "Tem certeza que deseja excluir a provider?"}, class: 'delete-resource icon_link with-tip fa fa-trash no-text'  %>

        <% end %>

      </td>
    </tr>
    <% end %>
  </tbody>
</table>
<% else %>
  <div class="no-objects-found">
    Não tem Provider cadastrado
  </div>
<% end %>

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
solidus_tec_estimator-2.0.0 app/views/spree/admin/solidus_tec_estimator/providers/index.html.erb
solidus_tec_estimator-1.0.6 app/views/spree/admin/solidus_tec_estimator/providers/index.html.erb
solidus_tec_estimator-1.0.5 app/views/spree/admin/solidus_tec_estimator/providers/index.html.erb
solidus_tec_estimator-1.0.4 app/views/spree/admin/solidus_tec_estimator/providers/index.html.erb
solidus_tec_estimator-1.0.3 app/views/spree/admin/solidus_tec_estimator/providers/index.html.erb
solidus_tec_estimator-1.0.2 app/views/spree/admin/solidus_tec_estimator/providers/index.html.erb
solidus_tec_estimator-1.0.1 app/views/spree/admin/solidus_tec_estimator/providers/index.html.erb
solidus_tec_estimator-1.0.0 app/views/spree/admin/solidus_tec_estimator/providers/index.html.erb
solidus_tec_estimator-0.0.3 app/views/spree/admin/solidus_tec_estimator/providers/index.html.erb
solidus_tec_estimator-0.0.2 app/views/spree/admin/solidus_tec_estimator/providers/index.html.erb
solidus_tec_estimator-0.0.1 app/views/spree/admin/solidus_tec_estimator/providers/index.html.erb