Subversion Repositories general

Rev

Rev 913 | Go to most recent revision | Details | Compare with Previous | 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.system.list.title" /></title>
899 dev 12
</head>
13
 
14
<body>
15
 
905 dev 16
<h1><bean:message key="ak.hostcaptain.page.user.system.list.title" /></h1>
899 dev 17
 
18
<html:errors/>
19
 
20
<table>
21
	<tr>
905 dev 22
		<th><bean:message key="ak.hostcaptain.page.user.system.list.uid" /></th>
23
		<th><bean:message key="ak.hostcaptain.page.user.system.list.name" /></th>
913 dev 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>
899 dev 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="uid" /></td>
33
		<td><bean:write name="u" property="name" /></td>
913 dev 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">&nbsp;</logic:notEqual>
42
		</td>
914 dev 43
		<td>
44
			<core:editable name="u">
45
				<backpath:link action="/user/system/edit" paramId="id" paramName="u" paramProperty="id"><bean:message key="ak.hostcaptain.page.user.system.list.edit" /></backpath:link>
46
			</core:editable>
47
			<core:notEditable name="u">
48
				<core:viewable name="u">
49
					<backpath:link action="/user/system/edit" paramId="id" paramName="u" paramProperty="id"><bean:message key="ak.hostcaptain.page.user.system.list.view" /></backpath:link>
50
				</core:viewable>
51
				<core:notViewable name="u">
52
					&nbsp;
53
				</core:notViewable>
54
			</core:notEditable>
55
		</td>
56
		<td>
57
			<core:deleteable name="u">
58
				<backpath:link action="/user/system/delete" paramId="id" paramName="u" paramProperty="id"><bean:message key="ak.hostcaptain.page.user.system.list.delete" /></backpath:link>
59
				</core:deleteable>
60
			<core:notDeleteable name="u">
61
				&nbsp;
62
			</core:notDeleteable>
63
		</td>
899 dev 64
	</tr>
65
</logic:iterate>
66
</table>
67
 
914 dev 68
<logic:equal name="allowedToCreate" value="true">
69
	<backpath:link action="/user/system/edit"><bean:message key="ak.hostcaptain.page.user.system.list.add" /></backpath:link>
70
</logic:equal>
71
 
899 dev 72
<br>
905 dev 73
<backpath:backlink><bean:message key="ak.hostcaptain.page.user.system.list.back" /></backpath:backlink>
899 dev 74
 
75
</body>
76
 
77
</html>