Subversion Repositories general

Compare Revisions

Ignore whitespace Rev 976 → Rev 977

/kickup/trunk/webapp/event/list.jsp
26,35 → 26,52
</div>
</strutsx:notEmpty>
 
<table border=1>
<table border=0 cellspacing=0 cellpadding=4 width=860>
<tr>
<th>Название</th>
<th>Место/город</th>
<th>Начало</th>
<th>Окончание</th>
<th>Регистрация разрешена</th>
<th class="headerCell">Название</th>
<th class="headerCell">Место/город</th>
<th class="headerCell">Начало</th>
<th class="headerCell">Окончание</th>
<th class="headerCell">Регистрация разрешена</th>
</tr>
 
<logic:iterate name="events" id="e">
<tr>
<td>
<td class="listCell">
<html:link action="/event/show" paramId="id" paramName="e" paramProperty="id">
<bean:write name="e" property="name" />
</html: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>
<td class="listCell"><bean:write name="e" property="place" />&nbsp;</td>
<td class="listCell"><bean:write name="e" property="start" format="dd.MM.yyyy" />&nbsp;</td>
<td class="listCell"><bean:write name="e" property="stop" format="dd.MM.yyyy" />&nbsp;</td>
<td class="listCell">
<logic:equal name="e" property="registrationAvailable" value="true">да</logic:equal>
<logic:notEqual name="e" property="registrationAvailable" value="true">нет</logic:notEqual>
</td>
</tr>
</logic:iterate>
<tr>
<td colspan=5>&nbsp;</td>
</tr>
</table>
 
<p><html:link page="/admin">Администрирование</html:link></<>
<!-- footer begin -->
<table border=0 cellspacing=0 cellpadding=4>
<tr>
<td colspan=2><img src="<strutsx:root />/images/line.gif" alt=""></td>
</tr>
<tr>
<td>&nbsp;</td>
<td align=right valign=top style="text-align: right; ">
<html:link page="/admin"><img src="<strutsx:root />/images/admin.gif" alt="Администрирование" border=0></html:link>
</td>
</tr>
 
<%@ include file="/copyright.jsp" %>
</table>
<!-- footer end -->
 
</body>
 
</html>