Subversion Repositories general

Rev

Rev 979 | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 979 Rev 980
1
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-
 
2
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
1
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
3
<%@ taglib uri="/WEB-INF/struts-bean.tld"      prefix="bean"     %>
2
<%@ taglib uri="/WEB-INF/struts-bean.tld"      prefix="bean"     %>
4
<%@ taglib uri="/WEB-INF/struts-logic.tld"     prefix="logic"    %>
3
<%@ taglib uri="/WEB-INF/struts-logic.tld"     prefix="logic"    %>
5
<%@ taglib uri="/WEB-INF/struts-html.tld"      prefix="html"     %>
4
<%@ taglib uri="/WEB-INF/struts-html.tld"      prefix="html"     %>
6
<%@ taglib uri="/WEB-INF/ak-strutsx.tld"       prefix="strutsx"  %>
5
<%@ taglib uri="/WEB-INF/ak-strutsx.tld"       prefix="strutsx"  %>
7
<%@ taglib uri="/WEB-INF/ak-kickup.tld"        prefix="kickup"   %>
6
<%@ taglib uri="/WEB-INF/ak-kickup.tld"        prefix="kickup"   %>
-
 
7
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
8
<html>
8
<html>
9
 
9
 
10
<head>
10
<head>
11
	<meta http-equiv="expires" content="0">
11
	<meta http-equiv="expires" content="0">
12
	<title>Пьянка XP - Участники мероприятия "<bean:write name="act" property="act.name" />" на пьянке "<bean:write name="event" property="name" />"</title>
12
	<title>Пьянка XP - Участники мероприятия "<bean:write name="act" property="act.name" />" на пьянке "<bean:write name="event" property="name" />"</title>
13
	<link rel="stylesheet" type="text/css" href="<strutsx:root />/style/general.css">
13
	<link rel="stylesheet" type="text/css" href="<strutsx:root />/style/general.css">
14
</head>
14
</head>
15
 
15
 
16
<body>
16
<body>
17
 
17
 
18
<%@ include file="/header.jsp" %>
18
<%@ include file="/header.jsp" %>
19
 
19
 
20
<h2>Участники мероприятия "<bean:write name="act" property="act.name" />"</h2>
20
<h2>Участники мероприятия "<bean:write name="act" property="act.name" />"</h2>
21
 
21
 
22
<strutsx:errorsIterator id="errors" />
22
<strutsx:errorsIterator id="errors" />
23
<strutsx:notEmpty name="errors">
23
<strutsx:notEmpty name="errors">
24
	<div class="error">Ошибки:
24
	<div class="error">Ошибки:
25
		<ul>
25
		<ul>
26
		<logic:iterate name="errors" id="error">
26
		<logic:iterate name="errors" id="error">
27
			<li><strutsx:message name="error" property="key" valuesProperty="values" /></li>
27
			<li><strutsx:message name="error" property="key" valuesProperty="values" /></li>
28
		</logic:iterate>
28
		</logic:iterate>
29
		</ul>
29
		</ul>
30
	</div>
30
	</div>
31
</strutsx:notEmpty>
31
</strutsx:notEmpty>
32
 
32
 
33
<table border=0 cellspacing=0 cellpadding=4 width=860>
33
<table border=0 cellspacing=0 cellpadding=4 width=860>
34
	<tr>
34
	<tr>
35
		<th class="headerCell">Ник</th>
35
		<th class="headerCell">Ник</th>
36
		<th class="headerCell">Имя</th>
36
		<th class="headerCell">Имя</th>
37
		<th class="headerCell">e-mail</th>
37
		<th class="headerCell">e-mail</th>
38
		<th class="headerCell">Телефон</th>
38
		<th class="headerCell">Телефон</th>
39
		<th class="headerCell">Дополнительно</th>
39
		<th class="headerCell">Дополнительно</th>
40
	</tr>
40
	</tr>
41
 
41
 
42
<logic:iterate name="list" id="p">
42
<logic:iterate name="list" id="p">
43
	<tr>
43
	<tr>
44
		<td class="listCell"><bean:write name="p" property="participant.nick" />&nbsp;</td>
44
		<td class="listCell"><bean:write name="p" property="participant.nick" />&nbsp;</td>
45
		<td class="listCell"><bean:write name="p" property="participant.name" />&nbsp;</td>
45
		<td class="listCell"><bean:write name="p" property="participant.name" />&nbsp;</td>
46
		<td class="listCell">
46
		<td class="listCell">
47
			<logic:equal name="p" property="participant.emailPublic" value="true">
47
			<logic:equal name="p" property="participant.emailPublic" value="true">
48
				<bean:write name="p" property="participant.email" />
48
				<bean:write name="p" property="participant.email" />
49
			</logic:equal>
49
			</logic:equal>
50
			&nbsp;
50
			&nbsp;
51
		</td>
51
		</td>
52
		<td class="listCell"><bean:write name="p" property="participant.phone" />&nbsp;</td>
52
		<td class="listCell"><bean:write name="p" property="participant.phone" />&nbsp;</td>
53
		<td class="listCell"><bean:write name="p" property="comment" />&nbsp;</td>
53
		<td class="listCell"><bean:write name="p" property="comment" />&nbsp;</td>
54
	</tr>
54
	</tr>
55
</logic:iterate>
55
</logic:iterate>
56
	<tr>
56
	<tr>
57
		<td colspan=5>&nbsp;</td>
57
		<td colspan=5>&nbsp;</td>
58
	</tr>
58
	</tr>
59
</table>
59
</table>
60
 
60
 
61
<%@ include file="/footer.jsp" %>
61
<%@ include file="/footer.jsp" %>
62
 
62
 
63
</body>
63
</body>
64
 
64
 
65
</html>
65
</html>