summaryrefslogtreecommitdiff
path: root/app/views/users/show.html.erb
blob: 80483d3bbee2683f8005d2828386063137e7c1c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<% content_for :subnavigation do %>
  <%= link_to 'Edit', edit_user_path(@user) %>
<% end %>

<h1>User: <%= @user.login %></h1>

<table id="new_node">
  <tr>
    <td class="description">Login</td>
    <td><%= @user.login %></td>
  </tr>
  <tr>
    <td class="description">E-Mail</td>
    <td><%= @user.email %></td>
  </tr>
  <tr>
    <td class="description">Admin?</td>
    <td><%= @user.admin ? "yes" : "no" %></td>
  </tr>
</table>