Go to most recent revision | Details | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
3 | 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/ak-strutsx.tld" prefix="strutsx" %> |
||
7 | <html> |
||
8 | |||
9 | <head> |
||
10 | <meta http-equiv="expires" content="0"> |
||
11 | <title>Edit event</title> |
||
12 | <link rel="stylesheet" type="text/css" href="<strutsx:root />/style/general.css"> |
||
13 | </head> |
||
14 | |||
15 | <body> |
||
16 | |||
17 | <h1>Edit event</h1> |
||
18 | |||
19 | <strutsx:errorsIterator id="errors" /> |
||
20 | <strutsx:notEmpty name="errors"> |
||
21 | <div class="error">Errors in input: |
||
22 | <ul> |
||
23 | <logic:iterate name="errors" id="error"> |
||
24 | <li><strutsx:message name="error" property="key" valuesProperty="values" /></li> |
||
25 | </logic:iterate> |
||
26 | </ul> |
||
27 | </div> |
||
28 | </strutsx:notEmpty> |
||
29 | |||
30 | <html:form action="/admin/event/submit"> |
||
31 | <backpath:current /> |
||
32 | <html:hidden property="id" /> |
||
33 | |||
34 | <table border=1> |
||
35 | <tr> |
||
36 | <th>Name</th> |
||
37 | <td><html:text property="name" /></td> |
||
38 | </tr> |
||
39 | <tr> |
||
40 | <th>Place</th> |
||
41 | <td><html:text property="place" /></td> |
||
42 | </tr> |
||
43 | <tr> |
||
44 | <th>Address</th> |
||
45 | <td><html:textarea property="address" /></td> |
||
46 | </tr> |
||
47 | <tr> |
||
48 | <th>Transport Description</th> |
||
49 | <td><html:textarea property="transport" /></td> |
||
50 | </tr> |
||
51 | <tr> |
||
52 | <th>Start</th> |
||
53 | <td><html:text property="start" /></td> |
||
54 | </tr> |
||
55 | <tr> |
||
56 | <th>Stop</th> |
||
57 | <td><html:text property="stop" /></td> |
||
58 | </tr> |
||
59 | <tr> |
||
60 | <th>Last registration</th> |
||
61 | <td><html:text property="lastreg" /></td> |
||
62 | </tr> |
||
63 | <tr> |
||
64 | <th>Last unregistration</th> |
||
65 | <td><html:text property="lastunreg" /></td> |
||
66 | </tr> |
||
67 | <tr> |
||
68 | <th>Price per person</th> |
||
69 | <td><html:text property="price" /></td> |
||
70 | </tr> |
||
71 | <tr> |
||
72 | <th>Account to transfer money</th> |
||
73 | <td><html:textarea property="account" /></td> |
||
74 | </tr> |
||
75 | <tr> |
||
76 | <th>Enabled</th> |
||
77 | <td><html:checkbox property="enabled" /></td> |
||
78 | </tr> |
||
79 | <tr> |
||
80 | <th>Comment</th> |
||
81 | <td><html:textarea property="comment" /></td> |
||
82 | </tr> |
||
83 | |||
84 | <logic:iterate name="EventEditForm" property="acts" id="acts" indexId="iid"> |
||
85 | <tr> |
||
86 | <td> |
||
87 | <html:hidden name="acts" property="actId" indexed="true" /> |
||
88 | <html:checkbox name="acts" property="selected" indexed="true" /> |
||
89 | </td> |
||
90 | <td><html:text name="acts" property="comment" indexed="true" /></td> |
||
91 | </tr> |
||
92 | </logic:iterate> |
||
93 | |||
94 | <tr> |
||
95 | <td colspan=2> |
||
96 | <html:submit>Submit</html:submit> |
||
97 | <backpath:backlink>Back</backpath:backlink> |
||
98 | </td> |
||
99 | </tr> |
||
100 | </table> |
||
101 | |||
102 | </html:form> |
||
103 | |||
104 | </body> |
||
105 | |||
106 | </html> |