Sha256: 76b2ff1e980bbf3fef2efb9b9bff7d206e299192633c7fa3459009d4759b2984

Contents?: true

Size: 1.18 KB

Versions: 5

Compression:

Stored size: 1.18 KB

Contents

<% content_for :page_title do %>
  <%= Spree.t(:roles) %>
<% end %>

<% content_for :page_actions do %>
  <%= button_link_to Spree.t(:new_role), new_object_url, class: "btn-success", icon: 'add.svg', id: 'admin_new_role_link' %>
<% end if can? :create, Spree::Role %>

<% if @roles.any? %>
  <div class="table-responsive">
    <table class="table">
      <thead>
        <tr data-hook="admin_roles_index_headers">
          <th><%= Spree.t(:role_id) %></th>
          <th class="actions"></th>
        </tr>
      </thead>
      <tbody>
        <% @roles.each do |role|%>
          <tr id="<%= spree_dom_id role %>" data-hook="admin_roles_index_rows">
            <td><%= role.name %></td>
            <td class="actions text-right">
              <%= link_to_edit(role, no_text: true) if can? :edit, role %>
              <%= link_to_delete(role, no_text: true) if can? :destroy, role %>
            </td>
          </tr>
        <% end %>
      </tbody>
    </table>
  </div>
<% else %>
  <div class="alert alert-warning">
    <%= Spree.t(:no_resource_found, resource: plural_resource_name(Spree::Role)) %>,
    <%= link_to(Spree.t(:add_one), new_object_url) if can? :create, Spree::Role %>!
  </div>
<% end %>

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
spree_backend-4.2.0.rc4 app/views/spree/admin/roles/index.html.erb
spree_backend-4.2.0.rc3 app/views/spree/admin/roles/index.html.erb
spree_backend-4.2.0.rc2 app/views/spree/admin/roles/index.html.erb
spree_backend-4.2.0.rc1 app/views/spree/admin/roles/index.html.erb
spree_backend-4.2.0.beta app/views/spree/admin/roles/index.html.erb