Dashboard
{new Date().toLocaleDateString('de-DE', { weekday: 'long', day: 'numeric', month: 'long' })}
{stats.total}
Checks heute
{stats.ok}
In Ordnung
{stats.abweichung}
Abweichungen
{stats.kritisch}
Kritisch
Heutige Einträge
{#if loading}
Lädt…
{:else if logs.length === 0}
Noch keine Einträge heute.
{:else}
{#each logs as log}
{STATUS_LABEL[log.status]}
{log.expand?.station?.name ?? '—'}
{#if log.temperature}
{log.temperature} °C
{/if}
{log.checked_by}
{formatTime(log.created)}
{/each}
{/if}