Subversion Repositories general

Rev

Go to most recent revision | Blame | 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>Edit event</title>
        <link rel="stylesheet" type="text/css" href="<strutsx:root />/style/general.css">
</head>

<body>

<h1>Edit event</h1>

<strutsx:errorsIterator id="errors" />
<strutsx:notEmpty name="errors">
        <div class="error">Errors in input:
                <ul>
                <logic:iterate name="errors" id="error">
                        <li><strutsx:message name="error" property="key" valuesProperty="values" /></li>
                </logic:iterate>
                </ul>
        </div>
</strutsx:notEmpty>

<html:form action="/admin/event/submit">
<backpath:current />
<html:hidden property="id" />

<table border=1>
        <tr>
                <th>Name</th>
                <td><html:text property="name" /></td>
    </tr>
        <tr>
                <th>Place</th>
                <td><html:text property="place" /></td>
    </tr>
        <tr>
                <th>Address</th>
                <td><html:textarea property="address" /></td>
    </tr>
        <tr>
                <th>Transport Description</th>
                <td><html:textarea property="transport" /></td>
    </tr>
        <tr>
                <th>Start</th>
                <td><html:text property="start" /></td>
    </tr>
        <tr>
                <th>Stop</th>
                <td><html:text property="stop" /></td>
    </tr>
        <tr>
                <th>Last registration</th>
                <td><html:text property="lastreg" /></td>
    </tr>
        <tr>
                <th>Last unregistration</th>
                <td><html:text property="lastunreg" /></td>
    </tr>
        <tr>
                <th>Price per person</th>
                <td><html:text property="price" /></td>
    </tr>
        <tr>
                <th>Account to transfer money</th>
                <td><html:textarea property="account" /></td>
    </tr>
        <tr>
                <th>Enabled</th>
                <td><html:checkbox property="enabled" /></td>
    </tr>
        <tr>
                <th>Comment</th>
                <td><html:textarea property="comment" /></td>
    </tr>

<logic:iterate name="EventEditForm" property="acts" id="acts" indexId="iid">
        <tr>
                <td>
                        <html:hidden name="acts" property="actId" indexed="true" />
                        <html:checkbox name="acts" property="selected" indexed="true" />
                </td>
                <td><html:text name="acts" property="comment" indexed="true" /></td>
        </tr>
</logic:iterate>

        <tr>
                <td colspan=2>
                        <html:submit>Submit</html:submit>
                        <backpath:backlink>Back</backpath:backlink>
                </td>
    </tr>
</table>

</html:form>

</body>

</html>