Rev 16 | Rev 972 | 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="/admin/participant/submit">
<backpath:current />
<html:hidden property="id" />
<html:hidden property="event" />
<table border=1>
<tr>
<th>Кодовый номер</th>
<td colspan=3><bean:write name="participant" property="ident" /> </td>
</tr>
<tr>
<th>Ник</th>
<td colspan=3><html:text property="nick" /></td>
</tr>
<tr>
<th>e-mail</th>
<td colspan=3><html:text property="email" /></td>
</tr>
<tr>
<th>Показ e-mail разрешен</th>
<td colspan=3><html:checkbox property="emailPublic" /></td>
</tr>
<tr>
<th>Имя</th>
<td colspan=3><html:text property="name" /></td>
</tr>
<tr>
<th>Телефон</th>
<td colspan=3><html:text property="phone" /></td>
</tr>
<tr>
<th>Количество человек</th>
<td colspan=3><html:text property="persons" /></td>
</tr>
<tr>
<th>Выезд из PLZ</th>
<td colspan=3><html:text property="fromZip" /></td>
</tr>
<tr>
<th>Выезд из города</th>
<td colspan=3><html:text property="fromCity" /></td>
</tr>
<tr>
<th>Время отправления</th>
<td colspan=3><html:text property="departure" /></td>
</tr>
<tr>
<th>Свободных мест в машине</th>
<td colspan=3><html:text property="freeTransport" /></td>
</tr>
<tr>
<th>Условия транспортировки</th>
<td colspan=3><html:textarea property="transportComment" /></td>
</tr>
<tr>
<th>Свободных спальных мест</th>
<td colspan=3><html:text property="freeSleep" /></td>
</tr>
<tr>
<th>Условия ночевки</th>
<td colspan=3><html:textarea property="sleepComment" /></td>
</tr>
<tr>
<th>Дополнительная информация</th>
<td colspan=3><html:textarea property="comment" /></td>
</tr>
<tr>
<th>Оплачено</th>
<td colspan=3><html:checkbox property="payed" /></td>
</tr>
<tr>
<th>Комментарии организаторов</th>
<td colspan=3><html:textarea property="privateComment" /></td>
</tr>
<logic:notEmpty name="actList" property="objects">
<tr>
<th colspan=4>Участвует в</th>
</tr>
<tr>
<td>Название</td>
<td>Включить</td>
<td>Дополнительно</td>
<td> </td>
</tr>
<logic:iterate name="ParticipantEditForm" 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>
<td> </td>
</tr>
</logic:iterate>
</logic:notEmpty>
<tr>
<td colspan=4>
<html:submit>Сохранить</html:submit>
<backpath:notEmpty><backpath:backlink>Отменить</backpath:backlink></backpath:notEmpty>
</td>
</tr>
</table>
</html:form>
</body>
</html>