Subversion Repositories general

Rev

Rev 18 | Go to most recent revision | 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-backpath.tld"      prefix="backpath" %>
<%@ taglib uri="/WEB-INF/ak-strutsx.tld"       prefix="strutsx"  %>
<html>

<head>
        <meta http-equiv="expires" content="0">
        <title>Пьянка XP</title>
        <link rel="stylesheet" type="text/css" href="<strutsx:root />/style/general.css">
</head>

<body>

<h1>Пьянка XP</h1>

<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=1>
        <tr>
                <th>Название</th>
                <th>Место/город</th>
                <th>Начало</th>
                <th>Окончание</th>
                <th>Регистрация разрешена</th>
        </tr>

<logic:iterate name="events" id="e">
        <tr>
                <td>
                        <backpath:link action="/event/show" paramId="id" paramName="e" paramProperty="id">
                                <bean:write name="e" property="name"  />
                        </backpath:link>
                </td>
                <td><bean:write name="e" property="place" />&nbsp;</td>
                <td><bean:write name="e" property="start" format="dd.MM.yyyy" />&nbsp;</td>
                <td><bean:write name="e" property="stop"  format="dd.MM.yyyy" />&nbsp;</td>
                <td>
                        <logic:equal name="e" property="registrationAvailable" value="true">да</logic:equal>
                        <logic:notEqual name="e" property="registrationAvailable" value="true">нет</logic:notEqual>
                </td>
        </tr>
</logic:iterate>
</table>

<backpath:notEmpty><backpath:backlink>Назад</backpath:backlink></backpath:notEmpty>

</body>

</html>