DistroPropaganda/code/rails31/depot_r/app/views/users/show.html.erb
2018-11-24 13:20:20 +01:00

15 lines
228 B
Text

<p id="notice"><%= notice %></p>
<p>
<b>Name:</b>
<%= @user.name %>
</p>
<p>
<b>Password digest:</b>
<%= @user.password_digest %>
</p>
<%= link_to 'Edit', edit_user_path(@user) %> |
<%= link_to 'Back', users_path %>