index.rhtml 315 Bytes
<%= link_to _('New role'), :action => 'new' %>
<ul>
  <% @roles.each do |role| %>
    <li> 
      <%= link_to role.name, :action => 'show', :id => role %>
      <%= link_to _('Edit'), :action => 'edit', :id => role %>
      <%= link_to _('Destroy'), :action => 'destroy', :id => role %>
    </li>
  <% end %>
</ul>