yaml2ical/meetings/example.jinja
Tim Burke 630657cafd Add ability to have per-meeting chairs
Wanting to schedule multiple meeting slots is often driven by a desire
to include more timezones; there's no reason to assume that a single
person will be available to chair all meetings.

Change-Id: If7f565d481dd0ae4bd4ee084cfddb203d170b2e8
2025-04-09 13:30:59 -07:00

23 lines
665 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 }}{% if schedule.chair != meeting.chair %}, chair: {{ schedule.chair }}{% endif %}</li>
{% endfor %}
</ul>
{% if meeting.chair %}
Chair (to contact for more information): {{ meeting.chair }}</p>
{% endif %}
{{ meeting.description|urlize }}
{% endfor %}
<p><i>Page generated on {{ timestamp }} UTC</i></p>