2012-03-31 15:45:24 +00:00
|
|
|
<!DOCTYPE html
|
|
|
|
PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
|
|
|
|
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
|
|
|
<html xmlns="http://www.w3.org/1999/xhtml"
|
|
|
|
xmlns:py="http://genshi.edgewall.org/"
|
|
|
|
xmlns:xi="http://www.w3.org/2001/XInclude">
|
|
|
|
<xi:include href="layout.html" />
|
|
|
|
<xi:include href="event_display.html" />
|
|
|
|
<head>
|
|
|
|
<title>${title}</title>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div id="content" class="event">
|
|
|
|
<div id="event-overview">
|
|
|
|
<h1>${title}</h1>
|
|
|
|
<div py:for="ix,event in enumerate(events)"
|
|
|
|
id="event:${event.e_id}" class="event-item">
|
|
|
|
<py:choose test=""><div py:when="event.periodic() or event.initial_e_id==True" class="recurring">C<br/>I<br/>R<br/>C<br/>U<br/>L<br/>A<br/>R</div>
|
2012-04-24 10:25:53 +00:00
|
|
|
<div py:otherwise="" class="unique">E<br/>I<br/>N<br/>Z<br/>E<br/>L<br/>T<br/>E<br/>R<br/>M<br/>I<br/>N</div>
|
2012-03-31 15:45:24 +00:00
|
|
|
</py:choose>
|
|
|
|
<div class="event-intern">
|
|
|
|
${render_event(event, True)}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|