32
lib/eventos_web/templates/user/index.html.eex
Normal file
32
lib/eventos_web/templates/user/index.html.eex
Normal file
@@ -0,0 +1,32 @@
|
||||
<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>
|
||||
Reference in New Issue
Block a user