Subversion Repositories general

Rev

Rev 918 | Go to most recent revision | Details | Compare with Previous | 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" %>
6
<%@ taglib uri="/WEB-INF/hostcaptain-core.tld" prefix="core"     %>
7
<html>
8
 
9
<head>
10
	<meta http-equiv="expires" content="0">
11
	<title><bean:message key="ak.hostcaptain.page.user.list.title" /></title>
12
</head>
13
 
14
<body>
15
 
16
<h1><bean:message key="ak.hostcaptain.page.user.list.title" /></h1>
17
 
18
<html:errors/>
19
 
20
<table border=1>
21
	<tr>
22
		<th><bean:message key="ak.hostcaptain.page.user.list.login" /></th>
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>
26
		<th>&nbsp;</th>
27
		<th>&nbsp;</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
				&nbsp;
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">&nbsp;</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">&nbsp;</logic:notEqual>
48
		</td>
49
		<td>
50
			<core:editable name="u">
51
				<backpath:link action="/user/edit" paramId="id" paramName="u" paramProperty="id"><bean:message key="ak.hostcaptain.page.user.list.edit" /></backpath:link>
52
			</core:editable>
53
			<core:notEditable name="u">
54
				<core:viewable name="u">
55
					<backpath:link action="/user/edit" paramId="id" paramName="u" paramProperty="id"><bean:message key="ak.hostcaptain.page.user.list.view" /></backpath:link>
56
				</core:viewable>
57
				<core:notViewable name="u">
58
					&nbsp;
59
				</core:notViewable>
60
			</core:notEditable>
61
		</td>
62
		<td>
63
			<core:deleteable name="u">
64
				<backpath:link action="/user/delete" paramId="id" paramName="u" paramProperty="id"><bean:message key="ak.hostcaptain.page.user.list.delete" /></backpath:link>
65
			</core:deleteable>
66
			<core:notDeleteable name="u">
67
				&nbsp;
68
			</core:notDeleteable>
69
		</td>
70
	</tr>
71
</logic:iterate>
72
</table>
73
 
74
<backpath:link action="/user/edit"><bean:message key="ak.hostcaptain.page.user.list.add" /></backpath:link>
75
<br>
76
<backpath:backlink><bean:message key="ak.hostcaptain.page.user.list.back" /></backpath:backlink>
77
 
78
</body>
79
 
80
</html>