-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathindex.html.erb
51 lines (48 loc) · 1.64 KB
/
index.html.erb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<% content_for :page_title do %>
<%= I18n.t('spree.user_roles') %>
<% end %>
<% content_for :page_actions do %>
<% if can?(:admin, Spree::Role) && can?(:create, Spree::Role) %>
<li>
<%= button_link_to I18n.t('spree.new_user_role'), new_admin_role_url, :icon => 'plus', :id => 'admin_new_role_link' %>
</li>
<% end %>
<% end %>
<% if @roles.any? %>
<table class="index">
<colgroup>
<col style="width: 50%">
<col style="width: 50%">
</colgroup>
<thead>
<tr data-hook="role_header">
<th><%= I18n.t('spree.name') %></th>
<th><%= I18n.t('spree.permissions') %></th>
<th class="actions"></th>
</tr>
</thead>
<tbody>
<% @roles.non_base_roles.each do |role|%>
<tr id="<%= spree_dom_id role %>" data-hook="rate_row" class="<%= cycle('odd', 'even')%>">
<td class="align-center"><%=role.try(:name) || I18n.t('spree.not_available') %></td>
<td class="align-center"><%= role.permission_sets.map(&:name).to_sentence %></td>
<td class="actions">
<% if can?(:update, role) %>
<%= link_to_edit role, :no_text => true %>
<% end %>
<% if can?(:destroy, role) %>
<%= link_to_delete role, :no_text => true %>
<% end %>
</td>
</tr>
<% end %>
</tbody>
</table>
<% else %>
<div class="alpha twelve columns no-objects-found">
<%= I18n.t('spree.no_resource_found', resource: I18n.t(:other, scope: 'activerecord.models.spree/role')) %>
<% if can?(:create, Spree::TaxRate) %>
<%= link_to I18n.t('spree.add_one'), spree.new_admin_role_path %>!
<% end %>
</div>
<% end %>