show.html.erb - warvox - VoIP based wardialing tool, forked from rapid7/warvox.
(HTM) git clone git://jay.scot/warvox
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) README
---
show.html.erb (483B)
---
1 <p>
2 <b>Login:</b>
3 <%=h @user.login %>
4 </p>
5
6 <p>
7 <b>Login count:</b>
8 <%=h @user.login_count %>
9 </p>
10
11 <p>
12 <b>Last request at:</b>
13 <%=h @user.last_request_at %>
14 </p>
15
16 <p>
17 <b>Last login at:</b>
18 <%=h @user.last_login_at %>
19 </p>
20
21 <p>
22 <b>Current login at:</b>
23 <%=h @user.current_login_at %>
24 </p>
25
26 <p>
27 <b>Last login ip:</b>
28 <%=h @user.last_login_ip %>
29 </p>
30
31 <p>
32 <b>Current login ip:</b>
33 <%=h @user.current_login_ip %>
34 </p>
35
36
37 <%= link_to 'Edit', edit_user_path %>