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 | <h2>Адрес</h2> |
||
32 | <p><kickup:write name="event" property="address" filterBr="true" /></p> |
||
33 | |||
34 | <h2>Как проехать</h2> |
||
35 | <p><kickup:write name="event" property="transportDesc" filterBr="true" /></p> |
||
36 | |||
37 | <h2>Свободные места в машинах</h2> |
||
38 | |||
39 | <table border=1> |
||
40 | <tr> |
||
41 | <th>PLZ</th> |
||
42 | <th>Город</th> |
||
43 | <th>Отправление</th> |
||
44 | <th>Ник</th> |
||
45 | <th>Имя</th> |
||
46 | <th>e-mail</th> |
||
47 | <th>Телефон</th> |
||
48 | <th>Свободных мест</th> |
||
49 | <th>Условия</th> |
||
50 | </tr> |
||
51 | |||
52 | <logic:iterate name="participants" id="p"> |
||
53 | <tr> |
||
54 | <td><bean:write name="p" property="fromZip" /> </td> |
||
55 | <td><bean:write name="p" property="fromCity" /> </td> |
||
56 | <td><bean:write name="p" property="departure" format="dd MMM yyyy HH:mm" /> </td> |
||
57 | <td><bean:write name="p" property="nick" /> </td> |
||
58 | <td><bean:write name="p" property="name" /> </td> |
||
59 | <td> |
||
60 | <logic:equal name="p" property="emailPublic" value="true"> |
||
61 | <bean:write name="p" property="email" /> |
||
62 | </logic:equal> |
||
63 | |
||
64 | </td> |
||
65 | <td><bean:write name="p" property="phone" /> </td> |
||
66 | <td><bean:write name="p" property="freeTransport" /> </td> |
||
67 | <td><bean:write name="p" property="transportComment" /> </td> |
||
68 | </tr> |
||
69 | </logic:iterate> |
||
70 | </table> |
||
71 | |||
72 | <br> |
||
73 | <backpath:notEmpty><backpath:backlink>Назад</backpath:backlink></backpath:notEmpty> |
||
74 | |||
75 | </body> |
||
76 | |||
77 | </html> |