47 lines
1.9 KiB
PHTML
47 lines
1.9 KiB
PHTML
<?php if (!empty($events)): ?>
|
|
<div class="inhalt">
|
|
<div class="content-container">
|
|
<div class="event-header">
|
|
<h2>Alle Ausstellungen</h2>
|
|
<?php if (isset($_SESSION['is_admin']) && $_SESSION['is_admin']): ?>
|
|
<a href="?controller=Event&do=showCreateEvent" class="admin-btn">Event erstellen</a>
|
|
<?php endif; ?>
|
|
</div>
|
|
<div class="event-container-inhalt">
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>Name</th>
|
|
<th>Beschreibung</th>
|
|
<th>Von</th>
|
|
<th>Bis</th>
|
|
<th>Max. Tickets</th>
|
|
<?php if (isset($_SESSION['is_admin']) && $_SESSION['is_admin']): ?>
|
|
<th>Aktionen</th>
|
|
<?php endif; ?>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<?php foreach ($events as $event): ?>
|
|
<tr>
|
|
<td><?php echo htmlspecialchars($event['name']); ?></td>
|
|
<td><?php echo nl2br(htmlspecialchars($event['description'])); ?></td>
|
|
<td><?php echo date('d.m.Y', strtotime($event['start_date'])); ?></td>
|
|
<td><?php echo date('d.m.Y', strtotime($event['end_date'])); ?></td>
|
|
<td><?php echo (int) $event['max_tickets']; ?></td>
|
|
<?php if (isset($_SESSION['is_admin']) && $_SESSION['is_admin']): ?>
|
|
<td>
|
|
<a href="?controller=Event&do=showUpdateEvent&event_id=<?php echo $event['event_id']; ?>" class="admin-btn">Bearbeiten</a>
|
|
<a href="?controller=Event&do=deleteEvent&event_id=<?php echo $event['event_id']; ?>" class="admin-btn" onclick="return confirm('Wirklich löschen?');">Löschen</a>
|
|
</td>
|
|
<?php endif; ?>
|
|
</tr>
|
|
<?php endforeach; ?>
|
|
</tbody>
|
|
</table>
|
|
<?php else: ?>
|
|
<p>Derzeit sind keine Ausstellungen verfügbar.</p>
|
|
<?php endif; ?>
|
|
</div>
|
|
</div>
|
|
</div>
|