Basic template for meeting index

Add basic template for meeting index.

Change-Id: I229a354655e7e0719459e2df3c2d985258b96210
This commit is contained in:
Thierry Carrez 2015-05-20 09:24:59 -07:00
parent 7159df38e6
commit 6e0c3278a4
1 changed files with 16 additions and 0 deletions

16
meetingindex.jinja Normal file
View File

@ -0,0 +1,16 @@
<h1>OpenStack 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 %}
<li>Chair (to contact for more information): {{ meeting.chair }}</li>
<li>{{ meeting.description|urlize }}</li>
</ul>
{% endfor %}