This commit is contained in:
Luca Haid
2025-05-06 15:57:33 +02:00
parent daddee1b8f
commit dd5feecde1
5 changed files with 118 additions and 2 deletions

View File

@@ -49,7 +49,16 @@ $pagination_entity_name = "Adressen";
<tr>
<th>Projekt</th>
<td><?=$item->project->name?></td>
</tr><tr>
</tr>
<?php if ($item->object_type == 'street' && isset($item->data->netzgebiet_id)): ?>
<tr>
<th>Netzgebiet</th>
<td><?=$item->netzgebiet->name?></td>
</tr>
<?php endif; ?>
<tr>
<th>Objekttyp</th>
<td><?=__($item->object_type, "consent")?></td>
</tr>