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.domain.edit.title" /></title> |
11 | <title><bean:message key="ak.hostadmiral.page.domain.edit.title" /></title> |
12 | </head> |
12 | </head> |
13 | 13 | ||
14 | <body> |
14 | <body> |
15 | 15 | ||
16 | <h1><bean:message key="ak.hostcaptain.page.domain.edit.title" /></h1> |
16 | <h1><bean:message key="ak.hostadmiral.page.domain.edit.title" /></h1> |
17 | 17 | ||
18 | <html:errors/> |
18 | <html:errors/> |
19 | 19 | ||
20 | <html:form action="/domain/submit"> |
20 | <html:form action="/domain/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.domain.edit.name" /></th> |
26 | <th><bean:message key="ak.hostadmiral.page.domain.edit.name" /></th> |
27 | <td><html:text property="name" /></td> |
27 | <td><html:text property="name" /></td> |
28 | </tr> |
28 | </tr> |
29 | <tr> |
29 | <tr> |
30 | <th><bean:message key="ak.hostcaptain.page.domain.edit.owner" /></th> |
30 | <th><bean:message key="ak.hostadmiral.page.domain.edit.owner" /></th> |
31 | <td> |
31 | <td> |
32 | <html:select property="owner"> |
32 | <html:select property="owner"> |
33 | <html:option value="" key="ak.hostcaptain.page.domain.edit.owner.empty"/> |
33 | <html:option value="" key="ak.hostadmiral.page.domain.edit.owner.empty"/> |
34 | <html:options collection="users" property="id" labelProperty="login" /> |
34 | <html:options collection="users" property="id" labelProperty="login" /> |
35 | </html:select> |
35 | </html:select> |
36 | </td> |
36 | </td> |
37 | </tr> |
37 | </tr> |
38 | <tr> |
38 | <tr> |
39 | <th><bean:message key="ak.hostcaptain.page.domain.edit.enabled" /></th> |
39 | <th><bean:message key="ak.hostadmiral.page.domain.edit.enabled" /></th> |
40 | <td><html:checkbox property="enabled" /></td> |
40 | <td><html:checkbox property="enabled" /></td> |
41 | </tr> |
41 | </tr> |
42 | <tr> |
42 | <tr> |
43 | <th><bean:message key="ak.hostcaptain.page.domain.edit.comment" /></th> |
43 | <th><bean:message key="ak.hostadmiral.page.domain.edit.comment" /></th> |
44 | <td><html:textarea property="comment" /></td> |
44 | <td><html:textarea property="comment" /></td> |
45 | </tr> |
45 | </tr> |
46 | <tr> |
46 | <tr> |
47 | <td colspan=2> |
47 | <td colspan=2> |
48 | <html:submit><bean:message key="ak.hostcaptain.page.domain.edit.submit" /></html:submit> |
48 | <html:submit><bean:message key="ak.hostadmiral.page.domain.edit.submit" /></html:submit> |
49 | <backpath:backlink><bean:message key="ak.hostcaptain.page.domain.edit.back" /></backpath:backlink> |
49 | <backpath:backlink><bean:message key="ak.hostadmiral.page.domain.edit.back" /></backpath:backlink> |
50 | </td> |
50 | </td> |
51 | </tr> |
51 | </tr> |
52 | </table> |
52 | </table> |
53 | 53 | ||
54 | </html:form> |
54 | </html:form> |