Stationen
QR-Codes ausdrucken und an den Stationen befestigen.
{#if stations.length > 0}
🖨 Alle drucken
{/if}
{#if loading}
Lädt…
{:else}
{#each stations as s}
{s.name}
{TYPE_LABEL[s.type] ?? s.type} {#if s.target_temp_min || s.target_temp_max} · {s.target_temp_min}° bis {s.target_temp_max}°C {/if}
{qrUrl(s.qr_id)}
{#if qrCodes[s.qr_id]}
{/if}
{/each}
{/if}
{#if !loading}
{#each stations as s}
{tenantName}
{s.name}
{TYPE_LABEL[s.type] ?? s.type} {#if s.target_temp_min || s.target_temp_max} · Zielbereich {s.target_temp_min}° bis {s.target_temp_max}°C {/if}
{#if qrCodes[s.qr_id]}
{/if}
{qrUrl(s.qr_id)}
{/each}
{/if}