Subversion Repositories general

Rev

Rev 980 | Blame | Compare with Previous | Last modification | View Log | RSS feed

<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<%@ taglib uri="/WEB-INF/struts-bean.tld"      prefix="bean"     %>
<%@ taglib uri="/WEB-INF/struts-logic.tld"     prefix="logic"    %>
<%@ taglib uri="/WEB-INF/struts-html.tld"      prefix="html"     %>
<%@ taglib uri="/WEB-INF/ak-strutsx.tld"       prefix="strutsx"  %>
<%@ taglib uri="/WEB-INF/ak-kickup.tld"        prefix="kickup"   %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>

<head>
        <meta http-equiv="expires" content="0">
        <title>Пьянка XP - Участники пьянки "<bean:write name="event" property="name" />"</title>
        <link rel="stylesheet" type="text/css" href="<strutsx:root />/style/general.css">
</head>

<body>

<%@ include file="/header.jsp" %>

<strutsx:errorsIterator id="errors" />
<strutsx:notEmpty name="errors">
        <div class="error">Ошибки:
                <ul>
                <logic:iterate name="errors" id="error">
                        <li><strutsx:message name="error" property="key" valuesProperty="values" /></li>
                </logic:iterate>
                </ul>
        </div>
</strutsx:notEmpty>

<table border=0 cellspacing=0 cellpadding=4 width=860>
        <tr>
                <th class="headerCell">Ник</th>
                <th class="headerCell">Имя</th>
                <th class="headerCell">e-mail</th>
                <th class="headerCell">Телефон</th>
                <th class="headerCell">Количество</th>
    <th class="headerCell">Откуда</th>
                <th class="headerCell">Информация</th>
        </tr>

<logic:iterate name="participants" id="p">
        <tr>
                <td class="listCell"><bean:write name="p" property="nick"    />&nbsp;</td>
                <td class="listCell"><bean:write name="p" property="name"    />&nbsp;</td>
                <td class="listCell">
                        <logic:equal name="p" property="emailPublic" value="true">
                                <bean:write name="p" property="email"   />
                        </logic:equal>
                        &nbsp;
                </td>
                <td class="listCell"><bean:write name="p" property="phone"   />&nbsp;</td>
                <td class="listCell"><bean:write name="p" property="persons" />&nbsp;</td>
    <td class="listCell"><bean:write name="p" property="fromCity" />&nbsp;</td>
                <td class="listCell"><bean:write name="p" property="comment" />&nbsp;</td>
        </tr>
</logic:iterate>
        <tr>
                <td colspan=5>&nbsp;</td>
        </tr>
</table>

<p>
        Всего заявок: <span class="personCount"><bean:write name="event" property="participantCount" /></span>
        Всего участников: <span class="personCount"><bean:write name="event" property="personCount" /></span>
</p>

<%@ include file="/footer.jsp" %>

</body>

</html>