@@ -1,37 +1,37 | |||||
1 | <div class="contextual"> |
|
1 | <div class="contextual"> | |
2 | <%= link_to l(:label_role_new), {:action => 'new'}, :class => 'icon icon-add' %> |
|
2 | <%= link_to l(:label_role_new), {:action => 'new'}, :class => 'icon icon-add' %> | |
3 | </div> |
|
3 | </div> | |
4 |
|
4 | |||
5 | <h2><%=l(:label_role_plural)%></h2> |
|
5 | <h2><%=l(:label_role_plural)%></h2> | |
6 |
|
6 | |||
7 | <table class="list"> |
|
7 | <table class="list"> | |
8 | <thead><tr> |
|
8 | <thead><tr> | |
9 | <th><%=l(:label_role)%></th> |
|
9 | <th><%=l(:label_role)%></th> | |
10 | <th><%=l(:button_sort)%></th> |
|
10 | <th><%=l(:button_sort)%></th> | |
11 | <th></th> |
|
11 | <th></th> | |
12 | </tr></thead> |
|
12 | </tr></thead> | |
13 | <tbody> |
|
13 | <tbody> | |
14 | <% for role in @roles %> |
|
14 | <% for role in @roles %> | |
15 | <tr class="<%= cycle("odd", "even") %>"> |
|
15 | <tr class="<%= cycle("odd", "even") %>"> | |
16 | <td><%= content_tag(role.builtin? ? 'em' : 'span', link_to(h(role.name), :action => 'edit', :id => role)) %></td> |
|
16 | <td><%= content_tag(role.builtin? ? 'em' : 'span', link_to(h(role.name), :action => 'edit', :id => role)) %></td> | |
17 | <td align="center" style="width:15%;"> |
|
17 | <td align="center" style="width:15%;"> | |
18 | <% unless role.builtin? %> |
|
18 | <% unless role.builtin? %> | |
19 | <%= reorder_links('role', {:action => 'edit', :id => role}) %> |
|
19 | <%= reorder_links('role', {:action => 'edit', :id => role}) %> | |
20 | <% end %> |
|
20 | <% end %> | |
21 | </td> |
|
21 | </td> | |
22 | <td class="buttons"> |
|
22 | <td class="buttons"> | |
23 | <%= link_to(l(:button_delete), { :action => 'destroy', :id => role }, |
|
23 | <%= link_to(l(:button_delete), { :action => 'destroy', :id => role }, | |
24 |
:method => :post, |
|
24 | :method => :post, | |
25 | :confirm => l(:text_are_you_sure), |
|
25 | :confirm => l(:text_are_you_sure), | |
26 | :class => 'icon icon-del') unless role.builtin? %> |
|
26 | :class => 'icon icon-del') unless role.builtin? %> | |
27 | </td> |
|
27 | </td> | |
28 | </tr> |
|
28 | </tr> | |
29 | <% end %> |
|
29 | <% end %> | |
30 | </tbody> |
|
30 | </tbody> | |
31 | </table> |
|
31 | </table> | |
32 |
|
32 | |||
33 | <p class="pagination"><%= pagination_links_full @role_pages %></p> |
|
33 | <p class="pagination"><%= pagination_links_full @role_pages %></p> | |
34 |
|
34 | |||
35 | <p><%= link_to l(:label_permissions_report), :action => 'report' %></p> |
|
35 | <p><%= link_to l(:label_permissions_report), :action => 'report' %></p> | |
36 |
|
36 | |||
37 | <% html_title(l(:label_role_plural)) -%> |
|
37 | <% html_title(l(:label_role_plural)) -%> |
General Comments 0
You need to be logged in to leave comments.
Login now