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