Subversion Repositories general

Compare Revisions

Ignore whitespace Rev 8 → Rev 9

/it-ru/trunk/webapp/admin/participant/edit.jsp
0,0 → 1,116
<%@ 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>Edit participant</title>
<link rel="stylesheet" type="text/css" href="<strutsx:root />/style/general.css">
</head>
 
<body>
 
<h1>Edit participant</h1>
 
<strutsx:errorsIterator id="errors" />
<strutsx:notEmpty name="errors">
<div class="error">Errors in input:
<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>Ident</th>
<td><bean:write name="participant" property="ident" /></td>
</tr>
<tr>
<th>Nick</th>
<td><html:text property="nick" /></td>
</tr>
<tr>
<th>Email</th>
<td><html:text property="email" /></td>
</tr>
<tr>
<th>Email is public</th>
<td colspan=3><html:checkbox property="emailPublic" /></td>
</tr>
<tr>
<th>Name</th>
<td><html:text property="name" /></td>
</tr>
<tr>
<th>Phone</th>
<td><html:text property="phone" /></td>
</tr>
<tr>
<th>Persons</th>
<td><html:text property="persons" /></td>
</tr>
<tr>
<th>From ZIP</th>
<td><html:text property="fromZip" /></td>
</tr>
<tr>
<th>From city</th>
<td><html:text property="fromCity" /></td>
</tr>
<tr>
<th>Departure</th>
<td><html:text property="departure" /></td>
</tr>
<tr>
<th>Free places in transport</th>
<td><html:text property="freeTransport" /></td>
</tr>
<tr>
<th>Comment to free places in transport</th>
<td><html:textarea property="transportComment" /></td>
</tr>
<tr>
<th>Free places to sleep</th>
<td><html:text property="freeSleep" /></td>
</tr>
<tr>
<th>Comment to free places to sleep</th>
<td><html:textarea property="sleepComment" /></td>
</tr>
<tr>
<th>Comment</th>
<td><html:textarea property="comment" /></td>
</tr>
<tr>
<th>Payed</th>
<td colspan=3><html:checkbox property="payed" /></td>
</tr>
<tr>
<th>Private comment</th>
<td><html:textarea property="privateComment" /></td>
</tr>
<tr>
<td colspan=2>
<html:submit>Submit</html:submit>
<backpath:backlink>Back</backpath:backlink>
</td>
</tr>
</table>
 
</html:form>
 
</body>
 
</html>