summaryrefslogtreecommitdiff
path: root/app/views/users/show.html.erb
blob: 05150f5c0a121597541824a18e1ad44a137c9424 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<p id="notice"><%= notice %></p>

<p>
  <strong>Name:</strong>
  <%= @user.name %>
</p>

<p>
  <strong>Pw hash:</strong>
  <%= @user.pw_hash %>
</p>

<p>
  <strong>Groups:</strong>
  <%= @user.groups %>
</p>

<%= link_to 'Edit', edit_user_path(@user) %> |
<%= link_to 'Back', users_path %>