Phase1 Bearbeitung
This commit is contained in:
@@ -1,9 +1,18 @@
|
||||
<?php require __DIR__ . '/../partials/layout-top.php'; ?>
|
||||
|
||||
<section class="page-head">
|
||||
<span class="eyebrow">Integration</span>
|
||||
<span class="eyebrow">Pilot & Integration</span>
|
||||
<h1>RFID-Roadmap und Event-Inbox</h1>
|
||||
<p>Das MVP speichert Geraete, Karten und rohe Events bereits produktionsnah, ohne die spaetere Hardwareentscheidung vorwegzunehmen.</p>
|
||||
<p>Das MVP speichert Geraete, Karten und rohe Events bereits produktionsnah, ohne die spaetere Hardwareentscheidung vorwegzunehmen. Dieser Bereich bleibt klar beim Standortteam und der Pilotbetreuung.</p>
|
||||
</section>
|
||||
|
||||
<section class="card">
|
||||
<span class="eyebrow">Export & Korrekturen</span>
|
||||
<ul class="feature-list">
|
||||
<li>Event-Export oder Inbox-Download: Platzhalter fuer spaetere Support-Links</li>
|
||||
<li>Karten- und Geraetekorrekturen: Platzhalter fuer Hinweise direkt an den Tabellen</li>
|
||||
<li>Member-Self-Service blendet RFID-Setup bewusst aus, bis der Pilot weiter ist</li>
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
<div class="grid-three">
|
||||
@@ -68,6 +77,11 @@
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<?php if ($devices === []): ?>
|
||||
<tr>
|
||||
<td colspan="4">Noch keine RFID-Geraete vorbereitet.</td>
|
||||
</tr>
|
||||
<?php endif; ?>
|
||||
<?php foreach ($devices as $device): ?>
|
||||
<tr>
|
||||
<td><?= e($device['name']) ?></td>
|
||||
@@ -90,6 +104,11 @@
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<?php if ($tags === []): ?>
|
||||
<tr>
|
||||
<td colspan="4">Noch keine RFID-Karten zugewiesen.</td>
|
||||
</tr>
|
||||
<?php endif; ?>
|
||||
<?php foreach ($tags as $tag): ?>
|
||||
<tr>
|
||||
<td><?= e((string) ($tag['label'] ?: 'ohne Label')) ?></td>
|
||||
@@ -114,6 +133,11 @@
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<?php if ($events === []): ?>
|
||||
<tr>
|
||||
<td colspan="4">Noch keine RFID-Events empfangen.</td>
|
||||
</tr>
|
||||
<?php endif; ?>
|
||||
<?php foreach ($events as $event): ?>
|
||||
<tr>
|
||||
<td><?= e($event['received_at']) ?></td>
|
||||
|
||||
Reference in New Issue
Block a user