Subversion Repositories general

Rev

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

Rev 16 Rev 27
Line 33... Line 33...
33
<html:hidden property="event" />
33
<html:hidden property="event" />
34
 
34
 
35
<table border=1>
35
<table border=1>
36
	<tr>
36
	<tr>
37
		<th>Кодовый номер</th>
37
		<th>Кодовый номер</th>
38
		<td><bean:write name="participant" property="ident" />&nbsp;</td>
38
		<td colspan=3><bean:write name="participant" property="ident" />&nbsp;</td>
39
    </tr>
39
    </tr>
40
	<tr>
40
	<tr>
41
		<th>Ник</th>
41
		<th>Ник</th>
42
		<td><html:text property="nick" /></td>
42
		<td colspan=3><html:text property="nick" /></td>
43
    </tr>
43
    </tr>
44
	<tr>
44
	<tr>
45
		<th>e-mail</th>
45
		<th>e-mail</th>
46
		<td><html:text property="email" /></td>
46
		<td colspan=3><html:text property="email" /></td>
47
    </tr>
47
    </tr>
48
	<tr>
48
	<tr>
49
		<th>Показ e-mail разрешен</th>
49
		<th>Показ e-mail разрешен</th>
50
		<td colspan=3><html:checkbox property="emailPublic" /></td>
50
		<td colspan=3><html:checkbox property="emailPublic" /></td>
51
    </tr>
51
    </tr>
52
	<tr>
52
	<tr>
53
		<th>Имя</th>
53
		<th>Имя</th>
54
		<td><html:text property="name" /></td>
54
		<td colspan=3><html:text property="name" /></td>
55
    </tr>
55
    </tr>
56
	<tr>
56
	<tr>
57
		<th>Телефон</th>
57
		<th>Телефон</th>
58
		<td><html:text property="phone" /></td>
58
		<td colspan=3><html:text property="phone" /></td>
59
    </tr>
59
    </tr>
60
	<tr>
60
	<tr>
61
		<th>Количество человек</th>
61
		<th>Количество человек</th>
62
		<td><html:text property="persons" /></td>
62
		<td colspan=3><html:text property="persons" /></td>
63
    </tr>
63
    </tr>
64
	<tr>
64
	<tr>
65
		<th>Выезд из PLZ</th>
65
		<th>Выезд из PLZ</th>
66
		<td><html:text property="fromZip" /></td>
66
		<td colspan=3><html:text property="fromZip" /></td>
67
    </tr>
67
    </tr>
68
	<tr>
68
	<tr>
69
		<th>Выезд из города</th>
69
		<th>Выезд из города</th>
70
		<td><html:text property="fromCity" /></td>
70
		<td colspan=3><html:text property="fromCity" /></td>
71
    </tr>
71
    </tr>
72
	<tr>
72
	<tr>
73
		<th>Время отправления</th>
73
		<th>Время отправления</th>
74
		<td><html:text property="departure" /></td>
74
		<td colspan=3><html:text property="departure" /></td>
75
    </tr>
75
    </tr>
76
	<tr>
76
	<tr>
77
		<th>Свободных мест в машине</th>
77
		<th>Свободных мест в машине</th>
78
		<td><html:text property="freeTransport" /></td>
78
		<td colspan=3><html:text property="freeTransport" /></td>
79
    </tr>
79
    </tr>
80
	<tr>
80
	<tr>
81
		<th>Условия транспортировки</th>
81
		<th>Условия транспортировки</th>
82
		<td><html:textarea property="transportComment" /></td>
82
		<td colspan=3><html:textarea property="transportComment" /></td>
83
    </tr>
83
    </tr>
84
	<tr>
84
	<tr>
85
		<th>Свободных спальных мест</th>
85
		<th>Свободных спальных мест</th>
86
		<td><html:text property="freeSleep" /></td>
86
		<td colspan=3><html:text property="freeSleep" /></td>
87
    </tr>
87
    </tr>
88
	<tr>
88
	<tr>
89
		<th>Условия ночевки</th>
89
		<th>Условия ночевки</th>
90
		<td><html:textarea property="sleepComment" /></td>
90
		<td colspan=3><html:textarea property="sleepComment" /></td>
91
    </tr>
91
    </tr>
92
	<tr>
92
	<tr>
93
		<th>Дополнительная информация</th>
93
		<th>Дополнительная информация</th>
94
		<td><html:textarea property="comment" /></td>
94
		<td colspan=3><html:textarea property="comment" /></td>
95
    </tr>
95
    </tr>
96
	<tr>
96
	<tr>
97
		<th>Оплачено</th>
97
		<th>Оплачено</th>
98
		<td colspan=3><html:checkbox property="payed" /></td>
98
		<td colspan=3><html:checkbox property="payed" /></td>
99
    </tr>
99
    </tr>
100
	<tr>
100
	<tr>
101
		<th>Комментарии организаторов</th>
101
		<th>Комментарии организаторов</th>
102
		<td><html:textarea property="privateComment" /></td>
102
		<td colspan=3><html:textarea property="privateComment" /></td>
103
    </tr>
103
    </tr>
-
 
104
 
-
 
105
<logic:notEmpty name="actList" property="objects">
-
 
106
	<tr>
-
 
107
		<th colspan=4>Участвует в</th>
-
 
108
    </tr>
-
 
109
	<tr>
-
 
110
		<td>Название</td>
-
 
111
		<td>Включить</td>
-
 
112
		<td>Дополнительно</td>
-
 
113
		<td>&nbsp;</td>
-
 
114
    </tr>
-
 
115
	<logic:iterate name="ParticipantEditForm" property="acts" id="acts" indexId="iid">
-
 
116
		<tr>
-
 
117
			<th>
-
 
118
				<bean:write name="actList" property='<%= "objects[" + iid + "].act.name" %>' />
-
 
119
				<html:hidden name="acts" property="actId" indexed="true" />
-
 
120
			</th>
-
 
121
			<td><html:checkbox name="acts" property="selected" indexed="true" /></td>
-
 
122
			<td><html:text name="acts" property="comment" indexed="true" /></td>
-
 
123
			<td>&nbsp;</td>
-
 
124
		</tr>
-
 
125
	</logic:iterate>
-
 
126
</logic:notEmpty>
-
 
127
 
104
	<tr>
128
	<tr>
105
		<td colspan=2>
129
		<td colspan=4>
106
			<html:submit>Сохранить</html:submit>
130
			<html:submit>Сохранить</html:submit>
107
			<backpath:notEmpty><backpath:backlink>Отменить</backpath:backlink></backpath:notEmpty>
131
			<backpath:notEmpty><backpath:backlink>Отменить</backpath:backlink></backpath:notEmpty>
108
		</td>
132
		</td>
109
    </tr>
133
    </tr>
110
</table>
134
</table>