c1a3f0ddf3
Fixes #47
27 lines
714 B
Twig
27 lines
714 B
Twig
<div class="overflow-x-auto overflow-y-hidden w-full mb-4 border">
|
|
<table class="table w-full mb-0 border-0">
|
|
<thead>
|
|
<tr>
|
|
<th class="w-1/4">Date</th>
|
|
|
|
{% if not talk_page %}
|
|
<th class="w-1/3">Talk</th>
|
|
{% endif %}
|
|
|
|
<th>Event</th>
|
|
|
|
{% if not upcoming %}
|
|
<th>Feedback</th>
|
|
{% endif %}
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for row in talks %}
|
|
{% include "talks-table-row" with {
|
|
today: 'today'|date('Y-m-d')
|
|
} %}
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
</div>
|