summaryrefslogtreecommitdiff
path: root/app/views/users/index.html.erb
blob: 46e958bf8e41940d07ce25f6c7be1d4a31314da9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<h1>Admins</h1>
<%= link_to 'New admin user', new_user_path(admin: true), class: 'action_button' %>
<table class="user_table">
  <tr class="header">
    <th>Login</th>
    <th></th>
    <th></th>
    <th></th>
  </tr>
  <%= render :partial => "user", :locals => {:users => @users[:admin] ||= []} %>
</table>

<h1>Users</h1>
<%= link_to 'New user', new_user_path, class: 'action_button' %>
<table class="user_table">
  <tr class="header">
    <th>Login</th>
    <th></th>
    <th></th>
    <th></th>
  </tr>
  <%= render :partial => "user", :locals => {:users => @users[:user] ||= []} %>
</table>