2017-09-07 11:54:32 +01:00
|
|
|
<div class="overflow-auto">
|
2017-10-08 09:26:41 +01:00
|
|
|
<table class="w-100 ba b--black-20">
|
2017-07-11 01:08:32 +01:00
|
|
|
<thead>
|
2017-09-06 07:34:18 +01:00
|
|
|
<tr class="striped--near-white">
|
2017-09-07 11:54:32 +01:00
|
|
|
<th class="w-20-l pa2 tl bg-white">Date</th>
|
2017-07-11 01:08:32 +01:00
|
|
|
|
|
|
|
{% if not talk_page %}
|
2017-09-07 11:54:32 +01:00
|
|
|
<th class="w-40-l pa2 tl bg-white">Talk</th>
|
2017-07-11 01:08:32 +01:00
|
|
|
{% endif %}
|
|
|
|
|
2017-09-07 11:54:32 +01:00
|
|
|
<th class="pa2 tl bg-white">Event</th>
|
2017-07-11 01:08:32 +01:00
|
|
|
|
|
|
|
{% if not upcoming %}
|
2017-09-07 11:54:32 +01:00
|
|
|
<th class="w4 pa2 tl bg-white">Feedback</th>
|
2017-07-11 01:08:32 +01:00
|
|
|
{% endif %}
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
2017-09-30 16:54:57 +01:00
|
|
|
{% set today = 'today'|date('Y-m-d') %}
|
2017-10-27 20:21:16 +01:00
|
|
|
{% for row in talks %}
|
|
|
|
{% include "talks-table-row" %}
|
2017-07-11 01:08:32 +01:00
|
|
|
{% endfor %}
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|