Subversion Repositories general

Compare Revisions

Ignore whitespace Rev 973 → Rev 974

/kickup/trunk/webapp/act/list.jsp
9,14 → 9,16
 
<head>
<meta http-equiv="expires" content="0">
<title>Пьянка XP - Участники "<bean:write name="act" property="act.name" />" на пьянке "<bean:write name="event" property="name" />"</title>
<title>Пьянка XP - Участники мероприятия "<bean:write name="act" property="act.name" />" на пьянке "<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="act" property="act.name" />" на пьянке "<bean:write name="event" property="name" />"</h1>
<%@ include file="/header.jsp" %>
 
<h2>Участники мероприятия "<bean:write name="act" property="act.name" />"</h2>
 
<strutsx:errorsIterator id="errors" />
<strutsx:notEmpty name="errors">
<div class="error">Ошибки:
28,33 → 30,35
</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="list" id="p">
<tr>
<td><bean:write name="p" property="participant.nick" />&nbsp;</td>
<td><bean:write name="p" property="participant.name" />&nbsp;</td>
<td>
<td class="listCell"><bean:write name="p" property="participant.nick" />&nbsp;</td>
<td class="listCell"><bean:write name="p" property="participant.name" />&nbsp;</td>
<td class="listCell">
<logic:equal name="p" property="participant.emailPublic" value="true">
<bean:write name="p" property="participant.email" />
</logic:equal>
&nbsp;
</td>
<td><bean:write name="p" property="participant.phone" />&nbsp;</td>
<td><bean:write name="p" property="comment" />&nbsp;</td>
<td class="listCell"><bean:write name="p" property="participant.phone" />&nbsp;</td>
<td class="listCell"><bean:write name="p" property="comment" />&nbsp;</td>
</tr>
</logic:iterate>
<tr>
<td colspan=5>&nbsp;</td>
</tr>
</table>
 
<br>
<backpath:notEmpty><backpath:backlink>Назад</backpath:backlink></backpath:notEmpty>
<%@ include file="/footer.jsp" %>
 
</body>