Subversion Repositories general

Compare Revisions

Ignore whitespace Rev 973 → Rev 974

/kickup/trunk/webapp/participant/list.jsp
28,33 → 28,38
</div>
</strutsx:notEmpty>
 
<table border=1>
<table border=0 cellspacing=0 cellpadding=4 width=860>
<tr>
<th>Ник</th>
<th>Имя</th>
<th>e-mail</th>
<th>Телефон</th>
<th>Количество</th>
<th class="headerCell">Ник</th>
<th class="headerCell">Имя</th>
<th class="headerCell">e-mail</th>
<th class="headerCell">Телефон</th>
<th class="headerCell">Количество</th>
</tr>
 
<logic:iterate name="participants" id="p">
<tr>
<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="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="persons" />&nbsp;</td>
<td class="listCell"><bean:write name="p" property="phone" />&nbsp;</td>
<td class="listCell"><bean:write name="p" property="persons" />&nbsp;</td>
</tr>
</logic:iterate>
<tr>
<td colspan=5>&nbsp;</td>
</tr>
</table>
 
<p>Всего заявок: <bean:write name="event" property="participantCount" /></p>
<p>Всего участников: <bean:write name="event" property="personCount" /></p>
<p>
Всего заявок: <span class="personCount"><bean:write name="event" property="participantCount" /></span>
Всего участников: <span class="personCount"><bean:write name="event" property="personCount" /></span>
</p>
 
<%@ include file="/footer.jsp" %>