forked from potsda.mn/mobilizon
90ceb4f6fe
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
29 lines
451 B
Elixir
29 lines
451 B
Elixir
<h2>Show User</h2>
|
|
|
|
<ul>
|
|
|
|
<li>
|
|
<strong>Username:</strong>
|
|
<%= @user.username %>
|
|
</li>
|
|
|
|
<li>
|
|
<strong>Email:</strong>
|
|
<%= @user.email %>
|
|
</li>
|
|
|
|
<li>
|
|
<strong>Password hash:</strong>
|
|
<%= @user.password_hash %>
|
|
</li>
|
|
|
|
<li>
|
|
<strong>Role:</strong>
|
|
<%= @user.role %>
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
<span><%= link "Edit", to: user_path(@conn, :edit, @user) %></span>
|
|
<span><%= link "Back", to: user_path(@conn, :index) %></span>
|