Kurs- und Veranstaltungsorte verwalten
{locations.length === 0 ? (
}
title="Keine Orte vorhanden"
description="Fügen Sie Ihren ersten Veranstaltungsort hinzu."
actionLabel="Neuer Ort"
/>
) : (
Alle Orte ({locations.length})
| Name |
Adresse |
Raum |
Kapazität |
{locations.map((loc: Record) => (
| {String(loc.name)} |
{[loc.street, loc.postal_code, loc.city]
.filter(Boolean)
.map(String)
.join(', ') || '—'}
|
{String(loc.room ?? '—')} |
{String(loc.capacity ?? '—')}
|
))}
)}