Subversion Repositories general

Compare Revisions

Ignore whitespace Rev 973 → Rev 974

/kickup/trunk/webapp/transport/list.jsp
36,37 → 36,40
 
<h2>Свободные места в машинах</h2>
 
<table border=1>
<table border=0 cellspacing=0 cellpadding=4 width=860>
<tr>
<th>PLZ</th>
<th>Город</th>
<th>Отправление</th>
<th>Ник</th>
<th>Имя</th>
<th>e-mail</th>
<th>Телефон</th>
<th>Свободных мест</th>
<th>Условия</th>
<th class="headerCell">PLZ</th>
<th class="headerCell">Город</th>
<th class="headerCell">Отправление</th>
<th class="headerCell">Ник</th>
<th class="headerCell">Имя</th>
<th class="headerCell">e-mail</th>
<th class="headerCell">Телефон</th>
<th class="headerCell">Свободных мест</th>
<th class="headerCell">Условия</th>
</tr>
 
<logic:iterate name="participants" id="p">
<tr>
<td><bean:write name="p" property="fromZip" />&nbsp;</td>
<td><bean:write name="p" property="fromCity" />&nbsp;</td>
<td><bean:write name="p" property="departure" format="dd MMM yyyy HH:mm" />&nbsp;</td>
<td><bean:write name="p" property="nick" />&nbsp;</td>
<td><bean:write name="p" property="name" />&nbsp;</td>
<td>
<td class="listCell"><bean:write name="p" property="fromZip" />&nbsp;</td>
<td class="listCell"><bean:write name="p" property="fromCity" />&nbsp;</td>
<td class="listCell"><bean:write name="p" property="departure" format="dd MMM yyyy HH:mm" />&nbsp;</td>
<td class="listCell"><bean:write name="p" property="nick" />&nbsp;</td>
<td class="listCell"><bean:write name="p" property="name" />&nbsp;</td>
<td class="listCell">
<logic:equal name="p" property="emailPublic" value="true">
<bean:write name="p" property="email" />
</logic:equal>
&nbsp;
</td>
<td><bean:write name="p" property="phone" />&nbsp;</td>
<td><bean:write name="p" property="freeTransport" />&nbsp;</td>
<td><bean:write name="p" property="transportComment" />&nbsp;</td>
<td class="listCell"><bean:write name="p" property="phone" />&nbsp;</td>
<td class="listCell"><bean:write name="p" property="freeTransport" />&nbsp;</td>
<td class="listCell"><bean:write name="p" property="transportComment" />&nbsp;</td>
</tr>
</logic:iterate>
<tr>
<td colspan=9>&nbsp;</td>
</tr>
</table>
 
<%@ include file="/footer.jsp" %>