Rev 973 | Go to most recent revision | Details | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
16 | dev | 1 | <%@ page contentType="text/html;charset=UTF-8" language="java" %> |
2 | <%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean" %> |
||
3 | <%@ taglib uri="/WEB-INF/struts-logic.tld" prefix="logic" %> |
||
4 | <%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html" %> |
||
5 | <%@ taglib uri="/WEB-INF/ak-backpath.tld" prefix="backpath" %> |
||
6 | <%@ taglib uri="/WEB-INF/ak-strutsx.tld" prefix="strutsx" %> |
||
7 | <%@ taglib uri="/WEB-INF/ak-kickup.tld" prefix="kickup" %> |
||
8 | <html> |
||
9 | |||
10 | <head> |
||
11 | <meta http-equiv="expires" content="0"> |
||
12 | <title>Пьянка XP - Участники пьянки "<bean:write name="event" property="name" />"</title> |
||
13 | <link rel="stylesheet" type="text/css" href="<strutsx:root />/style/general.css"> |
||
14 | </head> |
||
15 | |||
16 | <body> |
||
17 | |||
18 | <h1>Пьянка XP - Участники пьянки "<bean:write name="event" property="name" />"</h1> |
||
19 | |||
20 | <strutsx:errorsIterator id="errors" /> |
||
21 | <strutsx:notEmpty name="errors"> |
||
22 | <div class="error">Ошибки: |
||
23 | <ul> |
||
24 | <logic:iterate name="errors" id="error"> |
||
25 | <li><strutsx:message name="error" property="key" valuesProperty="values" /></li> |
||
26 | </logic:iterate> |
||
27 | </ul> |
||
28 | </div> |
||
29 | </strutsx:notEmpty> |
||
30 | |||
31 | <table border=1> |
||
32 | <tr> |
||
33 | <th>Ник</th> |
||
34 | <th>Имя</th> |
||
35 | <th>e-mail</th> |
||
36 | <th>Телефон</th> |
||
37 | <th>Количество</th> |
||
38 | </tr> |
||
39 | |||
40 | <logic:iterate name="participants" id="p"> |
||
41 | <tr> |
||
42 | <td><bean:write name="p" property="nick" /> </td> |
||
43 | <td><bean:write name="p" property="name" /> </td> |
||
44 | <td> |
||
45 | <logic:equal name="p" property="emailPublic" value="true"> |
||
46 | <bean:write name="p" property="email" /> |
||
47 | </logic:equal> |
||
48 | |
||
49 | </td> |
||
50 | <td><bean:write name="p" property="phone" /> </td> |
||
51 | <td><bean:write name="p" property="persons" /> </td> |
||
52 | </tr> |
||
53 | </logic:iterate> |
||
54 | </table> |
||
55 | |||
56 | <p>Всего заявок: <bean:write name="event" property="participantCount" /></p> |
||
57 | <p>Всего участников: <bean:write name="event" property="personCount" /></p> |
||
58 | |||
59 | <br> |
||
60 | <backpath:notEmpty><backpath:backlink>Назад</backpath:backlink></backpath:notEmpty> |
||
61 | |||
62 | </body> |
||
63 | |||
64 | </html> |