Added new ConstructionConsent Features
This commit is contained in:
@@ -146,6 +146,10 @@ $pagination_entity_name = "Zustimmungserklärungen";
|
||||
<button type="submit" class="btn btn-primary"><i class="far fa-search fa-fw"></i> Filter anwenden</button>
|
||||
<a class="btn btn-secondary" href="<?=self::getUrl("ConstructionConsent", "", ["resetFilter" => 1, "filter" => ["project_id" => (is_array($filter) && array_key_exists("project_id", $filter) ? $filter["project_id"] : "")]])?>"><i class="far fa-xmark fa-fw"></i> Filter zurücksetzen</a>
|
||||
</div>
|
||||
<!-- create a div that is on the right side of the row-->
|
||||
<div class="col text-right">
|
||||
<a class="btn btn-success" href="<?=self::getUrl("ConstructionConsent", "downloadMultiple", ["filter" => $filter])?>"><i class="fas fa-download"></i> Zustimmungserklärungen herunterladen</a>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
|
||||
@@ -321,6 +325,7 @@ $pagination_entity_name = "Zustimmungserklärungen";
|
||||
<th>Objektadresse</th>
|
||||
<th>GST-Nr.</th>
|
||||
<th>Einlagezahl</th>
|
||||
<th class="text-center">Anzahl Eigentümer</th>
|
||||
<th>Anfragestatus</th>
|
||||
<th>Anfrageresultat</th>
|
||||
<th></th>
|
||||
@@ -343,6 +348,18 @@ $pagination_entity_name = "Zustimmungserklärungen";
|
||||
</td>
|
||||
<td><?=$item->gst?></td>
|
||||
<td><?=$item->ez?></td>
|
||||
|
||||
<td class="text-center">
|
||||
|
||||
<?php
|
||||
if ($item->owners !== null) {
|
||||
$owners = $item->owners;
|
||||
$owner_count = count($owners);
|
||||
?>
|
||||
<?=$owner_count?>
|
||||
<?php } ?>
|
||||
</td>
|
||||
|
||||
<td><?=($item->status) ? __($item->status,"consent") : ""?></td>
|
||||
<td>
|
||||
<?php
|
||||
|
||||
Reference in New Issue
Block a user