Sha256: 3c44dbccb30a220e1763ff98df1987a552239483876efb0aab6572c006ff50b5
Contents?: true
Size: 1.19 KB
Versions: 10
Compression:
Stored size: 1.19 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
10 entries across 10 versions & 1 rubygems