ADB Statusflag done & Preorder statusflag import

This commit is contained in:
Frank Schubert
2024-08-20 12:51:54 +02:00
parent 03a53bbbd2
commit fcbbb82abc
10 changed files with 232 additions and 11 deletions

View File

@@ -71,6 +71,24 @@
</tr><tr>
<th>Status Text</th>
<td class="text-monospace"><?=$address->status->name?></td>
</tr><tr>
<th>Statusflags</th>
<td>
<table class="table table-sm table-bordered table-striped bg-white">
<tr>
<th class="text-left"></th>
<th class="text-left">Code</th>
<th class="text-left">Text</th>
</tr>
<?php foreach($address->statusflags as $flag): ?>
<tr>
<td class="text-center"><?=($flag->value->value) ? "<i class='fas fa-check text-success'></i>" : ""?></td>
<td><?=$flag->code?></td>
<td><?=$flag->name?></td>
</tr>
<?php endforeach; ?>
</table>
</td>
</tr><tr>
<td colspan="2"><h4>Adresse</h4></td>
</tr><tr>