Details | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
920 | 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" %> |
||
924 | dev | 6 | <%@ taglib uri="/WEB-INF/hostadmiral-core.tld" prefix="core" %> |
920 | dev | 7 | <html> |
8 | |||
9 | <head> |
||
10 | <meta http-equiv="expires" content="0"> |
||
924 | dev | 11 | <title><bean:message key="ak.hostadmiral.page.user.list.title" /></title> |
920 | dev | 12 | </head> |
13 | |||
14 | <body> |
||
15 | |||
924 | dev | 16 | <h1><bean:message key="ak.hostadmiral.page.user.list.title" /></h1> |
920 | dev | 17 | |
18 | <html:errors/> |
||
19 | |||
20 | <table border=1> |
||
21 | <tr> |
||
924 | dev | 22 | <th><bean:message key="ak.hostadmiral.page.user.list.login" /></th> |
23 | <th><bean:message key="ak.hostadmiral.page.user.list.boss" /></th> |
||
24 | <th><bean:message key="ak.hostadmiral.page.user.list.superuser" /></th> |
||
25 | <th><bean:message key="ak.hostadmiral.page.user.list.enabled" /></th> |
||
920 | 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> |
||
33 | <td> |
||
34 | <logic:present name="u" property="boss"> |
||
35 | <bean:write name="u" property="boss.login" /> |
||
36 | </logic:present> |
||
37 | <logic:notPresent name="u" property="boss"> |
||
38 | |
||
39 | </logic:notPresent> |
||
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> |
||
49 | <td> |
||
50 | <core:editable name="u"> |
||
924 | dev | 51 | <backpath:link action="/user/edit" paramId="id" paramName="u" paramProperty="id"><bean:message key="ak.hostadmiral.page.user.list.edit" /></backpath:link> |
920 | dev | 52 | </core:editable> |
53 | <core:notEditable name="u"> |
||
54 | <core:viewable name="u"> |
||
924 | dev | 55 | <backpath:link action="/user/edit" paramId="id" paramName="u" paramProperty="id"><bean:message key="ak.hostadmiral.page.user.list.view" /></backpath:link> |
920 | dev | 56 | </core:viewable> |
57 | <core:notViewable name="u"> |
||
58 | |
||
59 | </core:notViewable> |
||
60 | </core:notEditable> |
||
61 | </td> |
||
62 | <td> |
||
63 | <core:deleteable name="u"> |
||
924 | dev | 64 | <backpath:link action="/user/delete" paramId="id" paramName="u" paramProperty="id"><bean:message key="ak.hostadmiral.page.user.list.delete" /></backpath:link> |
920 | dev | 65 | </core:deleteable> |
66 | <core:notDeleteable name="u"> |
||
67 | |
||
68 | </core:notDeleteable> |
||
69 | </td> |
||
70 | </tr> |
||
71 | </logic:iterate> |
||
72 | </table> |
||
73 | |||
924 | dev | 74 | <backpath:link action="/user/edit"><bean:message key="ak.hostadmiral.page.user.list.add" /></backpath:link> |
920 | dev | 75 | <br> |
924 | dev | 76 | <backpath:backlink><bean:message key="ak.hostadmiral.page.user.list.back" /></backpath:backlink> |
920 | dev | 77 | |
78 | </body> |
||
79 | |||
80 | </html> |