Details | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
899 | dev | 1 | <%@ page contentType="text/html;charset=UTF-8" language="java" %> |
913 | dev | 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/hostcaptain-core.tld" prefix="core" %> |
||
899 | dev | 7 | <html> |
8 | |||
9 | <head> |
||
10 | <meta http-equiv="expires" content="0"> |
||
905 | dev | 11 | <title><bean:message key="ak.hostcaptain.page.user.list.title" /></title> |
899 | dev | 12 | </head> |
13 | |||
14 | <body> |
||
15 | |||
905 | dev | 16 | <h1><bean:message key="ak.hostcaptain.page.user.list.title" /></h1> |
899 | dev | 17 | |
18 | <html:errors/> |
||
19 | |||
915 | dev | 20 | <table border=1> |
899 | dev | 21 | <tr> |
905 | dev | 22 | <th><bean:message key="ak.hostcaptain.page.user.list.login" /></th> |
913 | dev | 23 | <th><bean:message key="ak.hostcaptain.page.user.list.boss" /></th> |
24 | <th><bean:message key="ak.hostcaptain.page.user.list.superuser" /></th> |
||
25 | <th><bean:message key="ak.hostcaptain.page.user.list.enabled" /></th> |
||
899 | dev | 26 | <th> </th> |
27 | <th> </th> |
||
28 | </tr> |
||
29 | |||
30 | <logic:iterate name="users" id="u"> |
||
31 | <tr> |
||
32 | <td><bean:write name="u" property="login" /></td> |
||
913 | dev | 33 | <td> |
34 | <logic:present name="u" property="boss"> |
||
35 | <bean:write name="u" property="boss.login" /> |
||
36 | </logic:present> |
||
915 | dev | 37 | <logic:notPresent name="u" property="boss"> |
38 | |
||
39 | </logic:notPresent> |
||
913 | dev | 40 | </td> |
41 | <td> |
||
42 | <logic:equal name="u" property="superuser" value="true">x</logic:equal> |
||
43 | <logic:notEqual name="u" property="superuser" value="true"> </logic:notEqual> |
||
44 | </td> |
||
45 | <td> |
||
46 | <logic:equal name="u" property="enabled" value="true">x</logic:equal> |
||
47 | <logic:notEqual name="u" property="enabled" value="true"> </logic:notEqual> |
||
48 | </td> |
||
905 | dev | 49 | <td><backpath:link action="/user/edit" paramId="id" paramName="u" paramProperty="id"><bean:message key="ak.hostcaptain.page.user.list.edit" /></backpath:link></td> |
50 | <td><backpath:link action="/user/delete" paramId="id" paramName="u" paramProperty="id"><bean:message key="ak.hostcaptain.page.user.list.delete" /></backpath:link></td> |
||
899 | dev | 51 | </tr> |
52 | </logic:iterate> |
||
53 | </table> |
||
54 | |||
905 | dev | 55 | <backpath:link action="/user/edit"><bean:message key="ak.hostcaptain.page.user.list.add" /></backpath:link> |
899 | dev | 56 | <br> |
905 | dev | 57 | <backpath:backlink><bean:message key="ak.hostcaptain.page.user.list.back" /></backpath:backlink> |
899 | dev | 58 | |
59 | </body> |
||
60 | |||
61 | </html> |