Go to most recent revision | Details | 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.domain.edit.title" /></title> |
899 | dev | 12 | </head> |
13 | |||
14 | <body> |
||
15 | |||
905 | dev | 16 | <h1><bean:message key="ak.hostcaptain.page.domain.edit.title" /></h1> |
899 | dev | 17 | |
18 | <html:errors/> |
||
19 | |||
20 | <html:form action="/domain/submit"> |
||
21 | <backpath:current /> |
||
22 | <html:hidden property="id" /> |
||
23 | |||
915 | dev | 24 | <table border=1> |
25 | <tr> |
||
26 | <th><bean:message key="ak.hostcaptain.page.domain.edit.name" /></th> |
||
27 | <td><html:text property="name" /></td> |
||
28 | </tr> |
||
29 | <tr> |
||
30 | <th><bean:message key="ak.hostcaptain.page.domain.edit.owner" /></th> |
||
31 | <td> |
||
32 | <html:select property="owner"> |
||
33 | <html:option value="" key="ak.hostcaptain.page.domain.edit.owner.empty"/> |
||
34 | <html:options collection="users" property="id" labelProperty="login" /> |
||
35 | </html:select> |
||
36 | </td> |
||
37 | </tr> |
||
38 | <tr> |
||
39 | <th><bean:message key="ak.hostcaptain.page.domain.edit.enabled" /></th> |
||
40 | <td><html:checkbox property="enabled" /></td> |
||
41 | </tr> |
||
42 | <tr> |
||
43 | <th><bean:message key="ak.hostcaptain.page.domain.edit.comment" /></th> |
||
44 | <td><html:textarea property="comment" /></td> |
||
45 | </tr> |
||
46 | <tr> |
||
47 | <td colspan=2> |
||
48 | <html:submit><bean:message key="ak.hostcaptain.page.domain.edit.submit" /></html:submit> |
||
49 | <backpath:backlink><bean:message key="ak.hostcaptain.page.domain.edit.back" /></backpath:backlink> |
||
50 | </td> |
||
51 | </tr> |
||
52 | </table> |
||
899 | dev | 53 | |
54 | </html:form> |
||
55 | |||
56 | </body> |
||
57 | |||
58 | </html> |