Sha256: 7d46b06b8aff63495553fec475f0f6a62ae822b23b428f3913346fce9bc398ad

Contents?: true

Size: 526 Bytes

Versions: 1

Compression:

Stored size: 526 Bytes

Contents

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

<table>
  <tr>
    <td>Login:</td>
    <td><%= @user.login %></td>
  </tr>
  <tr>
    <td>Login count:</td>
    <td><%= @user.login_count %></td>
  </tr>
  <tr>
    <td>Profile views:</td>
    <td><%= @user.profile_views %></td>
  </tr>
  <tr>
    <td>First name:</td>
    <td><%= @user.first_name %></td>
  </tr>
  <tr>
    <td>Last name:</td>
    <td><%= @user.last_name %></td>
  </tr>
</table>
<br />

<% if @user == @current_user %>
  <%= link_to "Edit", edit_account_path %><br />
<% end %>

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
authgasm-0.10.3 test_app/app/views/users/show.html.erb