Rev 905 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 905 | Rev 913 | ||
---|---|---|---|
Line 1... | Line 1... | ||
1 | <%@ page contentType="text/html;charset=UTF-8" language="java" %> |
1 | <%@ page contentType="text/html;charset=UTF-8" language="java" %> |
2 | <%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean" %> |
2 | <%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean" %> |
3 | <%@ taglib uri="/WEB-INF/struts-logic.tld" prefix="logic" %> |
3 | <%@ taglib uri="/WEB-INF/struts-logic.tld" prefix="logic" %> |
4 | <%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html" %> |
4 | <%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html" %> |
5 | <%@ taglib uri="/WEB-INF/ak-backpath.tld" prefix="backpath" %> |
5 | <%@ taglib uri="/WEB-INF/ak-backpath.tld" prefix="backpath" %> |
- | 6 | <%@ taglib uri="/WEB-INF/hostcaptain-core.tld" prefix="core" %> |
|
6 | <html> |
7 | <html> |
7 | 8 | ||
8 | <head> |
9 | <head> |
9 | <meta http-equiv="expires" content="0"> |
10 | <meta http-equiv="expires" content="0"> |
10 | <title><bean:message key="ak.hostcaptain.page.user.system.list.title" /></title> |
11 | <title><bean:message key="ak.hostcaptain.page.user.system.list.title" /></title> |
Line 18... | Line 19... | ||
18 | 19 | ||
19 | <table> |
20 | <table> |
20 | <tr> |
21 | <tr> |
21 | <th><bean:message key="ak.hostcaptain.page.user.system.list.uid" /></th> |
22 | <th><bean:message key="ak.hostcaptain.page.user.system.list.uid" /></th> |
22 | <th><bean:message key="ak.hostcaptain.page.user.system.list.name" /></th> |
23 | <th><bean:message key="ak.hostcaptain.page.user.system.list.name" /></th> |
- | 24 | <th><bean:message key="ak.hostcaptain.page.user.system.list.owner" /></th> |
|
- | 25 | <th><bean:message key="ak.hostcaptain.page.user.system.list.enabled" /></th> |
|
23 | <th> </th> |
26 | <th> </th> |
24 | <th> </th> |
27 | <th> </th> |
25 | </tr> |
28 | </tr> |
26 | 29 | ||
27 | <logic:iterate name="users" id="u"> |
30 | <logic:iterate name="users" id="u"> |
28 | <tr> |
31 | <tr> |
29 | <td><bean:write name="u" property="uid" /></td> |
32 | <td><bean:write name="u" property="uid" /></td> |
30 | <td><bean:write name="u" property="name" /></td> |
33 | <td><bean:write name="u" property="name" /></td> |
- | 34 | <td> |
|
- | 35 | <logic:present name="u" property="owner"> |
|
- | 36 | <bean:write name="u" property="owner.login" /> |
|
- | 37 | </logic:present> |
|
- | 38 | </td> |
|
- | 39 | <td> |
|
- | 40 | <logic:equal name="u" property="enabled" value="true">x</logic:equal> |
|
- | 41 | <logic:notEqual name="u" property="enabled" value="true"> </logic:notEqual> |
|
- | 42 | </td> |
|
31 | <td><backpath:link action="/user/system/edit" paramId="id" paramName="u" paramProperty="id"><bean:message key="ak.hostcaptain.page.user.system.list.edit" /></backpath:link></td> |
43 | <td><backpath:link action="/user/system/edit" paramId="id" paramName="u" paramProperty="id"><bean:message key="ak.hostcaptain.page.user.system.list.edit" /></backpath:link></td> |
32 | <td><backpath:link action="/user/system/delete" paramId="id" paramName="u" paramProperty="id"><bean:message key="ak.hostcaptain.page.user.system.list.delete" /></backpath:link></td> |
44 | <td><backpath:link action="/user/system/delete" paramId="id" paramName="u" paramProperty="id"><bean:message key="ak.hostcaptain.page.user.system.list.delete" /></backpath:link></td> |
33 | </tr> |
45 | </tr> |
34 | </logic:iterate> |
46 | </logic:iterate> |
35 | </table> |
47 | </table> |