Added location to the new forecast table.

This commit is contained in:
2026-04-02 16:39:28 +10:00
parent 9103542602
commit 93f54b142e

View File

@@ -109,6 +109,14 @@ use Michelf\Markdown;
</tr>
</thead>
<tbody>
<tr>
<td class="cal-grid-label">Location</td>
<?php foreach ($futureEvents as $event): ?>
<td class="text-center cal-grid-cell">
<?= htmlspecialchars($event['location'] ?? '') ?>
</td>
<?php endforeach; ?>
</tr>
<tr>
<td class="cal-grid-label">Presentation 1</td>
<?php foreach ($futureEvents as $event): ?>