Go to most recent revision | Details | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
949 | dev | 1 | <%@ page contentType="text/html;charset=UTF-8" language="java" %> |
2 | <%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean" %> |
||
3 | <%@ taglib uri="/WEB-INF/struts-logic.tld" prefix="logic" %> |
||
4 | <%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html" %> |
||
5 | <%@ taglib uri="/WEB-INF/ak-backpath.tld" prefix="backpath" %> |
||
6 | <%@ taglib uri="/WEB-INF/hostadmiral-core.tld" prefix="core" %> |
||
7 | <html> |
||
8 | |||
9 | <head> |
||
10 | <meta http-equiv="expires" content="0"> |
||
11 | <title><bean:message key="ak.hostadmiral.page.user.logins.title" /></title> |
||
12 | </head> |
||
13 | |||
14 | <body> |
||
15 | |||
16 | <h1><bean:message key="ak.hostadmiral.page.user.logins.title" /></h1> |
||
17 | |||
18 | <html:errors/> |
||
19 | |||
20 | <p> |
||
21 | <bean:message key="ak.hostadmiral.page.user.logins.login" /> |
||
22 | <strong><bean:write name="u" property="login" /></strong> |
||
23 | </p> |
||
24 | |||
25 | <table border=1> |
||
26 | <tr> |
||
27 | <th><bean:message key="ak.hostadmiral.page.user.logins.time" /></th> |
||
28 | <th><bean:message key="ak.hostadmiral.page.user.logins.success" /></th> |
||
29 | <th><bean:message key="ak.hostadmiral.page.user.logins.ip" /></th> |
||
30 | </tr> |
||
31 | |||
32 | <logic:iterate name="logins" id="l"> |
||
33 | <tr> |
||
34 | <td><bean:write name="l" property="loginTime" /></td> |
||
35 | <td> |
||
36 | <logic:equal name="l" property="success" value="true">x</logic:equal> |
||
37 | <logic:notEqual name="l" property="success" value="true"> </logic:notEqual> |
||
38 | </td> |
||
39 | <td><bean:write name="l" property="ip" /></td> |
||
40 | </tr> |
||
41 | </logic:iterate> |
||
42 | </table> |
||
43 | |||
44 | <br> |
||
45 | <backpath:backlink><bean:message key="ak.hostadmiral.page.user.logins.back" /></backpath:backlink> |
||
46 | |||
47 | </body> |
||
48 | |||
49 | </html> |