45 lines
588 B
Plaintext
45 lines
588 B
Plaintext
<p>
|
|
<b>Name:</b>
|
|
<%=h @user.name %>
|
|
</p>
|
|
|
|
<p>
|
|
<b>Email:</b>
|
|
<%=h @user.email %>
|
|
</p>
|
|
|
|
|
|
<p>
|
|
<b>Login count:</b>
|
|
<%=h @user.login_count %>
|
|
</p>
|
|
|
|
<p>
|
|
<b>Last request at:</b>
|
|
<%=h @user.last_request_at %>
|
|
</p>
|
|
|
|
<p>
|
|
<b>Last login at:</b>
|
|
<%=h @user.last_login_at %>
|
|
</p>
|
|
|
|
<p>
|
|
<b>Current login at:</b>
|
|
<%=h @user.current_login_at %>
|
|
</p>
|
|
|
|
<p>
|
|
<b>Last login ip:</b>
|
|
<%=h @user.last_login_ip %>
|
|
</p>
|
|
|
|
<p>
|
|
<b>Current login ip:</b>
|
|
<%=h @user.current_login_ip %>
|
|
</p>
|
|
|
|
|
|
<%= content_for :action_links do %>
|
|
<%= link_to 'Edit', edit_user_path(@user) %>
|
|
<% end %> |