DistroPropaganda/code/rails31/depot_r/app/views/users/show.html.erb

16 lines
228 B
Text
Raw Normal View History

2018-11-24 13:20:20 +01:00
<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 %>