2017-09-07 10:54:32 +00:00
|
|
|
<div class="overflow-auto">
|
2017-11-28 12:35:49 +00:00
|
|
|
<table class="table">
|
2017-07-11 00:08:32 +00:00
|
|
|
<thead>
|
2017-11-09 22:44:30 +00:00
|
|
|
<tr>
|
2017-11-28 12:35:49 +00:00
|
|
|
<th class="w-1/4">Date</th>
|
2017-07-11 00:08:32 +00:00
|
|
|
|
|
|
|
{% if not talk_page %}
|
2017-11-28 12:35:49 +00:00
|
|
|
<th class="w-1/3">Talk</th>
|
2017-07-11 00:08:32 +00:00
|
|
|
{% endif %}
|
|
|
|
|
2017-11-28 12:35:49 +00:00
|
|
|
<th>Event</th>
|
2017-07-11 00:08:32 +00:00
|
|
|
|
|
|
|
{% if not upcoming %}
|
2017-11-28 12:35:49 +00:00
|
|
|
<th>Feedback</th>
|
2017-07-11 00:08:32 +00:00
|
|
|
{% endif %}
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
2017-10-27 19:21:16 +00:00
|
|
|
{% for row in talks %}
|
2017-11-10 08:44:44 +00:00
|
|
|
{% include "talks-table-row" with {
|
|
|
|
today: 'today'|date('Y-m-d')
|
|
|
|
} %}
|
2017-07-11 00:08:32 +00:00
|
|
|
{% endfor %}
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|