Rev 19 | Rev 969 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean" %>
<%@ taglib uri="/WEB-INF/struts-logic.tld" prefix="logic" %>
<%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html" %>
<%@ taglib uri="/WEB-INF/ak-backpath.tld" prefix="backpath" %>
<%@ taglib uri="/WEB-INF/ak-strutsx.tld" prefix="strutsx" %>
<html>
<head>
<meta http-equiv="expires" content="0">
<title>Пьянка XP - <bean:write name="event" property="name" /> - Редактирование</title>
<link rel="stylesheet" type="text/css" href="<strutsx:root />/style/general.css">
</head>
<body>
<h1>Пьянка XP - <bean:write name="event" property="name" /> - Редактирование</h1>
<strutsx:errorsIterator id="errors" />
<strutsx:notEmpty name="errors">
<div class="error">Ошибки:
<ul>
<logic:iterate name="errors" id="error">
<li><strutsx:message name="error" property="key" valuesProperty="values" /></li>
</logic:iterate>
</ul>
</div>
</strutsx:notEmpty>
<html:form action="/participant/update">
<backpath:current />
<html:hidden property="event" />
<html:hidden property="ident" />
<table border=1>
<tr>
<th>Ваш номер</th>
<td colspan=2><bean:write name="participant" property="ident" /></td>
</tr>
<tr>
<th>Ник на форуме</th>
<td colspan=2><bean:write name="participant" property="nick" /></td>
</tr>
<tr>
<th>Ваш e-mail</th>
<td colspan=2><bean:write name="participant" property="email" /></td>
</tr>
<tr>
<th>Разрешить показ e-mail'а</th>
<td colspan=2><html:checkbox property="emailPublic" /></td>
</tr>
<tr>
<th>Сколько вас</th>
<td colspan=2><html:text property="persons" /></td>
</tr>
<tr>
<th>Выезд из PLZ</th>
<td colspan=2><html:text property="fromZip" /></td>
</tr>
<tr>
<th>Выезд из города</th>
<td colspan=2><html:text property="fromCity" /></td>
</tr>
<tr>
<th>Время отправления</th>
<td colspan=2><html:text property="departure" /></td>
</tr>
<tr>
<th>Свободных мест в машине</th>
<td colspan=2><html:text property="freeTransport" /></td>
</tr>
<tr>
<th>Условия транспортировки</th>
<td colspan=2><html:textarea property="transportComment" /></td>
</tr>
<tr>
<th>Свободных спальных мест</th>
<td colspan=2><html:text property="freeSleep" /></td>
</tr>
<tr>
<th>Условия ночевки</th>
<td colspan=2><html:textarea property="sleepComment" /></td>
</tr>
<tr>
<th>Ваше имя</th>
<td colspan=2><html:text property="name" /></td>
</tr>
<tr>
<th>Телефон</th>
<td colspan=2><html:text property="phone" /></td>
</tr>
<tr>
<th>Дополнительная информация</th>
<td colspan=2><html:textarea property="comment" /></td>
</tr>
<logic:notEmpty name="actList" property="objects">
<tr>
<th colspan=3>В чем желаете поучаствовать</th>
</tr>
<tr>
<td>Название</td>
<td>Включить</td>
<td>Дополнительно</td>
</tr>
<logic:iterate name="ParticipantRegisterEditForm" property="acts" id="acts" indexId="iid">
<tr>
<th>
<bean:write name="actList" property='<%= "objects[" + iid + "].act.name" %>' />
<html:hidden name="acts" property="actId" indexed="true" />
</th>
<td><html:checkbox name="acts" property="selected" indexed="true" /></td>
<td><html:text name="acts" property="comment" indexed="true" /></td>
</tr>
</logic:iterate>
</logic:notEmpty>
<tr>
<td colspan=3>
<html:submit>Сохранить</html:submit>
<backpath:notEmpty><backpath:backlink>Отменить</backpath:backlink></backpath:notEmpty>
</td>
</tr>
</table>
</html:form>
</body>
</html>