Sha256: 0d06f95a33d36586adf568806091a81bd231aa9f879209f0beb29e535efac9a2
Contents?: true
Size: 715 Bytes
Versions: 4
Compression:
Stored size: 715 Bytes
Contents
<%= render :partial => 'spree/admin/shared/configuration_menu' %> <% content_for :page_title do %> <%= Spree.t(:listing_roles) %> <% end %> <% content_for :page_actions do %> <li> <%= button_link_to Spree.t(:new_role), new_admin_role_path %> </li> <% end %> <%= paginate @roles %> <table class='index'> <thead> <tr> <th>Name</th> </tr> </thead> <tbody> <% @roles.each do |role| %> <tr class="<%= cycle('odd', 'even') %>"> <td class="align-center"><%= role.name %></td> <% if role.editable? %> <td class="actions"><%= link_to_edit role, :no_text => true, :class => 'edit' %></td> <% end %> </tr> <% end %> </tbody> </table>
Version data entries
4 entries across 4 versions & 1 rubygems