Sha256: ecf12d5eeaf0c7218befcfd58b2fab728bb2528e6348e46a96b8736bce33d839

Contents?: true

Size: 639 Bytes

Versions: 1

Compression:

Stored size: 639 Bytes

Contents

<h1>Listing user_roles</h1>

<table>
  <tr>
    <th>User</th>
    <th>Role</th>
    <th></th>
    <th></th>
    <th></th>
  </tr>

<% @user_roles.each do |user_role| %>
  <tr>
    <td><%= user_role.user_id %></td>
    <td><%= user_role.role %></td>
    <td><%= link_to 'Show', control_center_user_role_path(user_role) %></td>
    <td><%= link_to 'Edit', edit_control_center_user_role_path(user_role) %></td>
    <td><%= link_to 'Destroy', control_center_user_role_path(user_role), :confirm => 'Are you sure?', :method => :delete %></td>
  </tr>
<% end %>
</table>

<br />

<%= link_to 'New User role', new_control_center_user_role_path %>

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
onlinegames_info_connect-0.0.1 app/views/control_center/user_roles/index.html.erb