Rev 3 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 3 | Rev 9 | ||
---|---|---|---|
Line 34... | Line 34... | ||
34 | <th>Start</th> |
34 | <th>Start</th> |
35 | <th>Stop</th> |
35 | <th>Stop</th> |
36 | <th>Enabled</th> |
36 | <th>Enabled</th> |
37 | <th> </th> |
37 | <th> </th> |
38 | <th> </th> |
38 | <th> </th> |
- | 39 | <th> </th> |
|
39 | </tr> |
40 | </tr> |
40 | 41 | ||
41 | <logic:iterate name="events" id="e"> |
42 | <logic:iterate name="events" id="e"> |
42 | <tr> |
43 | <tr> |
43 | <td><bean:write name="e" property="name" /></td> |
44 | <td><bean:write name="e" property="name" /></td> |
44 | <td><bean:write name="e" property="place" /> </td> |
45 | <td><bean:write name="e" property="place" /> </td> |
45 | <td><bean:write name="e" property="start" /> </td> |
46 | <td><bean:write name="e" property="start" format="dd.MM.yyyy" /> </td> |
46 | <td><bean:write name="e" property="stop" /> </td> |
47 | <td><bean:write name="e" property="stop" format="dd.MM.yyyy" /> </td> |
47 | <td> |
48 | <td> |
48 | <logic:equal name="e" property="enabled" value="true">x</logic:equal> |
49 | <logic:equal name="e" property="enabled" value="true">x</logic:equal> |
49 | <logic:notEqual name="e" property="enabled" value="true"> </logic:notEqual> |
50 | <logic:notEqual name="e" property="enabled" value="true"> </logic:notEqual> |
50 | </td> |
51 | </td> |
51 | <td> |
52 | <td> |
52 | <backpath:link action="/admin/event/edit" paramId="id" paramName="e" paramProperty="id">edit</backpath:link> |
53 | <backpath:link action="/admin/event/edit" paramId="id" paramName="e" paramProperty="id">edit</backpath:link> |
53 | </td> |
54 | </td> |
54 | <td> |
55 | <td> |
55 | <backpath:link action="/admin/event/delete" paramId="id" paramName="e" paramProperty="id">delete</backpath:link> |
56 | <backpath:link action="/admin/event/delete" paramId="id" paramName="e" paramProperty="id">delete</backpath:link> |
- | 57 | </td> |
|
- | 58 | <td> |
|
- | 59 | <backpath:link action="/admin/participant/list" paramId="event" paramName="e" paramProperty="id">participants</backpath:link> |
|
56 | </td> |
60 | </td> |
57 | </tr> |
61 | </tr> |
58 | </logic:iterate> |
62 | </logic:iterate> |
59 | </table> |
63 | </table> |
60 | 64 |