Subversion Repositories general

Rev

Rev 3 | Rev 10 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 3 Rev 9
Line 32... Line 32...
32
<html:hidden property="id" />
32
<html:hidden property="id" />
33
 
33
 
34
<table border=1>
34
<table border=1>
35
	<tr>
35
	<tr>
36
		<th>Name</th>
36
		<th>Name</th>
37
		<td><html:text property="name" /></td>
37
		<td colspan=3><html:text property="name" /></td>
38
    </tr>
38
    </tr>
39
	<tr>
39
	<tr>
40
		<th>Place</th>
40
		<th>Place</th>
41
		<td><html:text property="place" /></td>
41
		<td colspan=3><html:text property="place" /></td>
42
    </tr>
42
    </tr>
43
	<tr>
43
	<tr>
44
		<th>Address</th>
44
		<th>Address</th>
45
		<td><html:textarea property="address" /></td>
45
		<td colspan=3><html:textarea property="address" /></td>
46
    </tr>
46
    </tr>
47
	<tr>
47
	<tr>
48
		<th>Transport Description</th>
48
		<th>Transport Description</th>
49
		<td><html:textarea property="transport" /></td>
49
		<td colspan=3><html:textarea property="transport" /></td>
50
    </tr>
50
    </tr>
51
	<tr>
51
	<tr>
52
		<th>Start</th>
52
		<th>Start</th>
53
		<td><html:text property="start" /></td>
53
		<td colspan=3><html:text property="start" /></td>
54
    </tr>
54
    </tr>
55
	<tr>
55
	<tr>
56
		<th>Stop</th>
56
		<th>Stop</th>
57
		<td><html:text property="stop" /></td>
57
		<td colspan=3><html:text property="stop" /></td>
58
    </tr>
58
    </tr>
59
	<tr>
59
	<tr>
60
		<th>Last registration</th>
60
		<th>Last registration</th>
61
		<td><html:text property="lastreg" /></td>
61
		<td colspan=3><html:text property="lastreg" /></td>
62
    </tr>
62
    </tr>
63
	<tr>
63
	<tr>
64
		<th>Last unregistration</th>
64
		<th>Last unregistration</th>
65
		<td><html:text property="lastunreg" /></td>
65
		<td colspan=3><html:text property="lastunreg" /></td>
66
    </tr>
66
    </tr>
67
	<tr>
67
	<tr>
68
		<th>Price per person</th>
68
		<th>Price per person</th>
69
		<td><html:text property="price" /></td>
69
		<td colspan=3><html:text property="price" /></td>
70
    </tr>
70
    </tr>
71
	<tr>
71
	<tr>
72
		<th>Account to transfer money</th>
72
		<th>Account to transfer money</th>
73
		<td><html:textarea property="account" /></td>
73
		<td colspan=3><html:textarea property="account" /></td>
74
    </tr>
74
    </tr>
75
	<tr>
75
	<tr>
76
		<th>Enabled</th>
76
		<th>Enabled</th>
77
		<td><html:checkbox property="enabled" /></td>
77
		<td colspan=3><html:checkbox property="enabled" /></td>
78
    </tr>
78
    </tr>
79
	<tr>
79
	<tr>
80
		<th>Comment</th>
80
		<th>Comment</th>
81
		<td><html:textarea property="comment" /></td>
81
		<td colspan=3><html:textarea property="comment" /></td>
82
    </tr>
82
    </tr>
83
 
83
 
-
 
84
	<tr>
-
 
85
		<th colspan=4>Acts for the event</th>
-
 
86
    </tr>
-
 
87
	<tr>
-
 
88
		<td>Name</td>
-
 
89
		<td>Include</td>
-
 
90
		<td>Comment</td>
-
 
91
		<td>&nbsp;</td>
-
 
92
    </tr>
84
<logic:iterate name="EventEditForm" property="acts" id="acts" indexId="iid">
93
<logic:iterate name="EventEditForm" property="acts" id="acts" indexId="iid">
85
	<tr>
94
	<tr>
86
		<td>
95
		<th>
-
 
96
			<bean:write name="actList" property='<%= "objects[" + iid + "].name" %>' />
87
			<html:hidden name="acts" property="actId" indexed="true" />
97
			<html:hidden name="acts" property="actId" indexed="true" />
88
			<html:checkbox name="acts" property="selected" indexed="true" />
-
 
89
		</td>
98
		</th>
-
 
99
		<td><html:checkbox name="acts" property="selected" indexed="true" /></td>
90
		<td><html:text name="acts" property="comment" indexed="true" /></td>
100
		<td><html:text name="acts" property="comment" indexed="true" /></td>
-
 
101
		<td>&nbsp;</td>
91
	</tr>
102
	</tr>
92
</logic:iterate>
103
</logic:iterate>
93
 
104
 
-
 
105
	<tr>
-
 
106
		<th colspan=4>Apartment for the event</th>
-
 
107
    </tr>
-
 
108
	<tr>
-
 
109
		<td>Name</td>
-
 
110
		<td>Include</td>
-
 
111
		<td>Comment</td>
-
 
112
		<td>Distance</td>
-
 
113
    </tr>
-
 
114
<logic:iterate name="EventEditForm" property="apartments" id="apartments" indexId="iid2">
-
 
115
	<tr>
-
 
116
		<th>
-
 
117
			<bean:write name="apartmentList" property='<%= "objects[" + iid2 + "].name" %>' />
-
 
118
			<html:hidden name="apartments" property="apartmentId" indexed="true" />
-
 
119
		</th>
-
 
120
		<td><html:checkbox name="apartments" property="selected" indexed="true" /></td>
-
 
121
		<td><html:text name="apartments" property="comment" indexed="true" /></td>
-
 
122
		<td><html:text name="apartments" property="distance" indexed="true" /></td>
-
 
123
	</tr>
-
 
124
</logic:iterate>
-
 
125
 
94
	<tr>
126
	<tr>
95
		<td colspan=2>
127
		<td colspan=4>
96
			<html:submit>Submit</html:submit>
128
			<html:submit>Submit</html:submit>
97
			<backpath:backlink>Back</backpath:backlink>
129
			<backpath:backlink>Back</backpath:backlink>
98
		</td>
130
		</td>
99
    </tr>
131
    </tr>
100
</table>
132
</table>