Rev 18 | 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><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 | <p><kickup:write name="event" property="comment" filterBr="true" /></p> |
||
32 | |||
33 | <p>Время проведения: |
||
34 | <logic:empty name="event" property="start">еще неизвестно</logic:empty> |
||
35 | <logic:notEmpty name="event" property="start"> |
||
36 | <bean:write name="event" property="start" format="d MMM yyyy" /> |
||
37 | <logic:notEmpty name="event" property="stop">- <bean:write name="event" property="stop" format="d MMM yyyy" /></logic:notEmpty> |
||
38 | </logic:notEmpty> |
||
39 | |||
40 | <h2>Место проведения</h2> |
||
41 | |||
42 | <p><bean:write name="event" property="place" /></p> |
||
43 | <p><kickup:write name="event" property="address" filterBr="true" /></p> |
||
44 | |||
45 | <h2>Планируемые мероприятия</h2> |
||
46 | |||
47 | <ul> |
||
48 | <logic:iterate name="acts" id="a"> |
||
49 | <li><bean:write name="a" property="act.name" /></li> |
||
50 | </logic:iterate> |
||
51 | </ul> |
||
52 | |||
53 | <h2>Стоимость</h2> |
||
54 | |||
55 | <p> |
||
56 | <logic:empty name="event" property="price">пока не определена</logic:empty> |
||
57 | <logic:notEmpty name="event" property="price"> |
||
58 | <bean:write name="event" property="price" format="0.00" /> евро с носа |
||
59 | </logic:notEmpty> |
||
60 | </p> |
||
61 | |||
62 | <backpath:link action="/participant/list" paramId="event" paramName="event" paramProperty="id">Участники</backpath:link> |
||
63 | <backpath:link action="/apartment/list" paramId="event" paramName="event" paramProperty="id">Где разместиться</backpath:link> |
||
64 | <backpath:link action="/transport/list" paramId="event" paramName="event" paramProperty="id">Как добраться</backpath:link> |
||
65 | |||
66 | <backpath:notEmpty><backpath:backlink>Назад</backpath:backlink></backpath:notEmpty> |
||
67 | |||
68 | </body> |
||
69 | |||
70 | </html> |