Current section
Files
Jump to
Current section
Files
web/templates/user/show.html.eex
<h2>Show user</h2>
<ul>
<li>
<strong>Username:</strong>
<%= @user.username %>
</li>
<li>
<strong>Email:</strong>
<%= @user.email %>
</li>
<li>
<strong>Password digest:</strong>
<%= @user.password_digest %>
</li>
</ul>
<%= link "Edit", to: user_path(@conn, :edit, @user) %>
<%= link "Back", to: user_path(@conn, :index) %>