comparison app/views/roles/index.html.erb @ 0:513646585e45

* Import Redmine trunk SVN rev 3859
author Chris Cannam
date Fri, 23 Jul 2010 15:52:44 +0100
parents
children cbb26bc654de
comparison
equal deleted inserted replaced
-1:000000000000 0:513646585e45
1 <div class="contextual">
2 <%= link_to l(:label_role_new), {:action => 'new'}, :class => 'icon icon-add' %>
3 </div>
4
5 <h2><%=l(:label_role_plural)%></h2>
6
7 <table class="list">
8 <thead><tr>
9 <th><%=l(:label_role)%></th>
10 <th><%=l(:button_sort)%></th>
11 <th></th>
12 </tr></thead>
13 <tbody>
14 <% for role in @roles %>
15 <tr class="<%= cycle("odd", "even") %>">
16 <td><%= content_tag(role.builtin? ? 'em' : 'span', link_to(role.name, :action => 'edit', :id => role)) %></td>
17 <td align="center" style="width:15%;">
18 <% unless role.builtin? %>
19 <%= reorder_links('role', {:action => 'edit', :id => role}) %>
20 <% end %>
21 </td>
22 <td class="buttons">
23 <%= link_to(l(:button_delete), { :action => 'destroy', :id => role },
24 :method => :post,
25 :confirm => l(:text_are_you_sure),
26 :class => 'icon icon-del') unless role.builtin? %>
27 </td>
28 </tr>
29 <% end %>
30 </tbody>
31 </table>
32
33 <p class="pagination"><%= pagination_links_full @role_pages %></p>
34
35 <p><%= link_to l(:label_permissions_report), :action => 'report' %></p>
36
37 <% html_title(l(:label_role_plural)) -%>