Rev 973 | Rev 976 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 973 | Rev 974 | ||
---|---|---|---|
Line 26... | Line 26... | ||
26 | </logic:iterate> |
26 | </logic:iterate> |
27 | </ul> |
27 | </ul> |
28 | </div> |
28 | </div> |
29 | </strutsx:notEmpty> |
29 | </strutsx:notEmpty> |
30 | 30 | ||
31 | <table border=1> |
31 | <table border=0 cellspacing=0 cellpadding=4 width=860> |
32 | <tr> |
32 | <tr> |
33 | <th>Ник</th> |
33 | <th class="headerCell">Ник</th> |
34 | <th>Имя</th> |
34 | <th class="headerCell">Имя</th> |
35 | <th>e-mail</th> |
35 | <th class="headerCell">e-mail</th> |
36 | <th>Телефон</th> |
36 | <th class="headerCell">Телефон</th> |
37 | <th>Количество</th> |
37 | <th class="headerCell">Количество</th> |
38 | </tr> |
38 | </tr> |
39 | 39 | ||
40 | <logic:iterate name="participants" id="p"> |
40 | <logic:iterate name="participants" id="p"> |
41 | <tr> |
41 | <tr> |
42 | <td><bean:write name="p" property="nick" /> </td> |
42 | <td class="listCell"><bean:write name="p" property="nick" /> </td> |
43 | <td><bean:write name="p" property="name" /> </td> |
43 | <td class="listCell"><bean:write name="p" property="name" /> </td> |
44 | <td> |
44 | <td class="listCell"> |
45 | <logic:equal name="p" property="emailPublic" value="true"> |
45 | <logic:equal name="p" property="emailPublic" value="true"> |
46 | <bean:write name="p" property="email" /> |
46 | <bean:write name="p" property="email" /> |
47 | </logic:equal> |
47 | </logic:equal> |
48 | |
48 | |
49 | </td> |
49 | </td> |
50 | <td><bean:write name="p" property="phone" /> </td> |
50 | <td class="listCell"><bean:write name="p" property="phone" /> </td> |
51 | <td><bean:write name="p" property="persons" /> </td> |
51 | <td class="listCell"><bean:write name="p" property="persons" /> </td> |
52 | </tr> |
52 | </tr> |
53 | </logic:iterate> |
53 | </logic:iterate> |
- | 54 | <tr> |
|
- | 55 | <td colspan=5> </td> |
|
- | 56 | </tr> |
|
54 | </table> |
57 | </table> |
55 | 58 | ||
- | 59 | <p> |
|
56 | <p>Всего заявок: <bean:write name="event" property="participantCount" /></p> |
60 | Всего заявок: <span class="personCount"><bean:write name="event" property="participantCount" /></span> |
57 | <p>Всего участников: <bean:write name="event" property="personCount" /></p> |
61 | Всего участников: <span class="personCount"><bean:write name="event" property="personCount" /></span> |
- | 62 | </p> |
|
58 | 63 | ||
59 | <%@ include file="/footer.jsp" %> |
64 | <%@ include file="/footer.jsp" %> |
60 | 65 | ||
61 | </body> |
66 | </body> |
62 | 67 |