To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.
root / app / views / roles / index.html.erb @ 441:cbce1fd3b1b7
History | View | Annotate | Download (1.09 KB)
| 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)) -%>
|