90ceb4f6fe
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
33 lines
913 B
Elixir
33 lines
913 B
Elixir
<h2>Listing Users</h2>
|
|
|
|
<table class="table">
|
|
<thead>
|
|
<tr>
|
|
<th>Username</th>
|
|
<th>Email</th>
|
|
<th>Password hash</th>
|
|
<th>Role</th>
|
|
|
|
<th></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<%= for user <- @users do %>
|
|
<tr>
|
|
<td><%= user.username %></td>
|
|
<td><%= user.email %></td>
|
|
<td><%= user.password_hash %></td>
|
|
<td><%= user.role %></td>
|
|
|
|
<td class="text-right">
|
|
<span><%= link "Show", to: user_path(@conn, :show, user), class: "btn btn-default btn-xs" %></span>
|
|
<span><%= link "Edit", to: user_path(@conn, :edit, user), class: "btn btn-default btn-xs" %></span>
|
|
<span><%= link "Delete", to: user_path(@conn, :delete, user), method: :delete, data: [confirm: "Are you sure?"], class: "btn btn-danger btn-xs" %></span>
|
|
</td>
|
|
</tr>
|
|
<% end %>
|
|
</tbody>
|
|
</table>
|
|
|
|
<span><%= link "New User", to: user_path(@conn, :new) %></span>
|