Rev 920 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 920 | Rev 924 | ||
---|---|---|---|
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 | <%@ taglib uri="/WEB-INF/hostadmiral-core.tld" prefix="core" %> |
7 | <html> |
7 | <html> |
8 | 8 | ||
9 | <head> |
9 | <head> |
10 | <meta http-equiv="expires" content="0"> |
10 | <meta http-equiv="expires" content="0"> |
11 | <title><bean:message key="ak.hostcaptain.page.user.system.edit.title" /></title> |
11 | <title><bean:message key="ak.hostadmiral.page.user.system.edit.title" /></title> |
12 | </head> |
12 | </head> |
13 | 13 | ||
14 | <body> |
14 | <body> |
15 | 15 | ||
16 | <h1><bean:message key="ak.hostcaptain.page.user.system.edit.title" /></h1> |
16 | <h1><bean:message key="ak.hostadmiral.page.user.system.edit.title" /></h1> |
17 | 17 | ||
18 | <html:errors/> |
18 | <html:errors/> |
19 | 19 | ||
20 | <html:form action="/user/system/submit"> |
20 | <html:form action="/user/system/submit"> |
21 | <backpath:current /> |
21 | <backpath:current /> |
22 | <html:hidden property="id" /> |
22 | <html:hidden property="id" /> |
23 | 23 | ||
24 | <table border=1> |
24 | <table border=1> |
25 | <tr> |
25 | <tr> |
26 | <th><bean:message key="ak.hostcaptain.page.user.system.edit.uid" /></th> |
26 | <th><bean:message key="ak.hostadmiral.page.user.system.edit.uid" /></th> |
27 | <td><html:text property="uid" /></td> |
27 | <td><html:text property="uid" /></td> |
28 | </tr> |
28 | </tr> |
29 | <tr> |
29 | <tr> |
30 | <th><bean:message key="ak.hostcaptain.page.user.system.edit.name" /></th> |
30 | <th><bean:message key="ak.hostadmiral.page.user.system.edit.name" /></th> |
31 | <td><html:text property="name" /></td> |
31 | <td><html:text property="name" /></td> |
32 | </tr> |
32 | </tr> |
33 | <tr> |
33 | <tr> |
34 | <th><bean:message key="ak.hostcaptain.page.user.system.edit.owner" /></th> |
34 | <th><bean:message key="ak.hostadmiral.page.user.system.edit.owner" /></th> |
35 | <td> |
35 | <td> |
36 | <html:select property="owner"> |
36 | <html:select property="owner"> |
37 | <html:option value="" key="ak.hostcaptain.page.user.system.edit.owner.empty"/> |
37 | <html:option value="" key="ak.hostadmiral.page.user.system.edit.owner.empty"/> |
38 | <html:options collection="users" property="id" labelProperty="login" /> |
38 | <html:options collection="users" property="id" labelProperty="login" /> |
39 | </html:select> |
39 | </html:select> |
40 | </td> |
40 | </td> |
41 | </tr> |
41 | </tr> |
42 | <tr> |
42 | <tr> |
43 | <th><bean:message key="ak.hostcaptain.page.user.system.edit.enabled" /></th> |
43 | <th><bean:message key="ak.hostadmiral.page.user.system.edit.enabled" /></th> |
44 | <td><html:checkbox property="enabled" /></td> |
44 | <td><html:checkbox property="enabled" /></td> |
45 | </tr> |
45 | </tr> |
46 | <tr> |
46 | <tr> |
47 | <th><bean:message key="ak.hostcaptain.page.user.system.edit.comment" /></th> |
47 | <th><bean:message key="ak.hostadmiral.page.user.system.edit.comment" /></th> |
48 | <td><html:textarea property="comment" /></td> |
48 | <td><html:textarea property="comment" /></td> |
49 | </tr> |
49 | </tr> |
50 | <tr> |
50 | <tr> |
51 | <td colspan=2> |
51 | <td colspan=2> |
52 | <html:submit><bean:message key="ak.hostcaptain.page.user.system.edit.submit" /></html:submit> |
52 | <html:submit><bean:message key="ak.hostadmiral.page.user.system.edit.submit" /></html:submit> |
53 | <backpath:backlink><bean:message key="ak.hostcaptain.page.user.system.edit.back" /></backpath:backlink> |
53 | <backpath:backlink><bean:message key="ak.hostadmiral.page.user.system.edit.back" /></backpath:backlink> |
54 | </td> |
54 | </td> |
55 | </tr> |
55 | </tr> |
56 | </table> |
56 | </table> |
57 | 57 | ||
58 | </html:form> |
58 | </html:form> |