27 lines
800 B
Twig
27 lines
800 B
Twig
<div class="overflow-auto">
|
|
<table class="talks-table w-full border border-grey-light">
|
|
<thead>
|
|
<tr>
|
|
<th class="w-1/4 p-2 text-left bg-white">Date</th>
|
|
|
|
{% if not talk_page %}
|
|
<th class="w-1/3 p-2 text-left bg-white">Talk</th>
|
|
{% endif %}
|
|
|
|
<th class="p-2 text-left bg-white">Event</th>
|
|
|
|
{% if not upcoming %}
|
|
<th class="p-2 text-left bg-white">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>
|