yaml2ical/meetings/example.jinja
Thierry Carrez ff513f9efe Add timestamp to the template variables
Add index generation timestamp as a variable available to template
authors ("timestamp").

Change-Id: I7607f0c7eebaad1adca2d6e92a356a3dab1f015b
2015-05-28 15:45:35 +02:00

21 lines
550 B
Django/Jinja

<h1>IRC meetings</h1>
{% for meeting in meetings %}
<h3>{{ meeting.project }}</h3>
<ul>
{% for schedule in meeting.schedules %}
<li>{{ schedule.recurrence }} on {{ schedule.day }} at
<a href="http://www.timeanddate.com/worldclock/fixedtime.html?hour={{ schedule.utc[:2] }}&min={{ schedule.utc[2:] }}&sec=0">{{ schedule.utc }} UTC</a>
in #{{ schedule.irc }}</li>
{% endfor %}
</ul>
Chair (to contact for more information): {{ meeting.chair }}</p>
{{ meeting.description|urlize }}
{% endfor %}
<p><i>Page generated on {{ timestamp }} UTC</i></p>