WIP 2025-01-09 ConstructionConsent
This commit is contained in:
@@ -25,7 +25,7 @@
|
||||
<?= ($Action == "add") ? "Neue " : "" ?>Zustimmungserklärung <?= ($Action == "edit") ? "bearbeiten " : "" ?>
|
||||
</h4>
|
||||
|
||||
<form class="form-horizontal" method="post" action="<?= self::getUrl("Preordercampaign", "save") ?>">
|
||||
<form class="form-horizontal" method="post" action="<?= self::getUrl("ConstructionConsent", "save") ?>">
|
||||
<input type="hidden" name="id" value="<?=isset($item) ? $item->id : ""?>"/>
|
||||
|
||||
<div class="card">
|
||||
@@ -36,7 +36,7 @@
|
||||
<div class="col-lg-10">
|
||||
<select class="form-control" name="constructionconsentproject_id" id="constructionconsentproject_id">
|
||||
<?php foreach(ConstructionConsentProject::getAll() as $project): ?>
|
||||
<option value="street" <?=($item->constructionconsentproject_id == $project->id ? "selected='selected'" : "")?>><?=$project->name?></option>
|
||||
<option value="<?=$project->id?>" <?=($item->constructionconsentproject_id == $project->id ? "selected='selected'" : "")?>><?=$project->name?></option>
|
||||
<?php endforeach; ?>
|
||||
</select>
|
||||
</div>
|
||||
@@ -115,7 +115,7 @@
|
||||
<div class="col-lg-2"></div>
|
||||
<div class="col-lg-10">
|
||||
<label>
|
||||
<input type="checkbox" name="usage_pipe_on_plot" id="usage_pipe_on_plot" value="1" />
|
||||
<input type="checkbox" name="usage_pipe_on_plot" id="usage_pipe_on_plot" value="1" <?=($item->usage_pipe_on_plot ? "checked='checked'" : "")?> />
|
||||
Verlegung von Rohren und Lichtwellenleitern am Grundstück
|
||||
</label>
|
||||
</div>
|
||||
@@ -125,7 +125,7 @@
|
||||
<div class="col-lg-2"></div>
|
||||
<div class="col-lg-10">
|
||||
<label>
|
||||
<input type="checkbox" name="usage_pipe_in_building" id="usage_pipe_in_building" value="1" />
|
||||
<input type="checkbox" name="usage_pipe_in_building" id="usage_pipe_in_building" value="1" <?=($item->usage_pipe_in_building ? "checked='checked'" : "")?> />
|
||||
Verlegung von Rohren und Lichtwellenleitern in den darauf befindlichen Gebäuden
|
||||
</label>
|
||||
</div>
|
||||
@@ -135,7 +135,7 @@
|
||||
<div class="col-lg-2"></div>
|
||||
<div class="col-lg-10">
|
||||
<label>
|
||||
<input type="checkbox" name="usage_manhole" id="usage_manhole" value="1" />
|
||||
<input type="checkbox" name="usage_manhole" id="usage_manhole" value="1" <?=($item->usage_manhole ? "checked='checked'" : "")?> />
|
||||
Errichtung eines Schachtes/einer Kabelmontagegrube und/oder eines LWL-Verteilschrankes/einer LWL-Abschlussbox
|
||||
</label>
|
||||
</div>
|
||||
@@ -145,7 +145,7 @@
|
||||
<div class="col-lg-2"></div>
|
||||
<div class="col-lg-10">
|
||||
<label>
|
||||
<input type="checkbox" name="usage_owner" id="usage_owner" value="1" />
|
||||
<input type="checkbox" name="usage_owner" id="usage_owner" value="1" <?=($item->usage_owner ? "checked='checked'" : "")?> />
|
||||
Die Nutzung der Liegenschaft seitens BB dient der Eigenversorgung der GE und/oder dessen Nutzer(in) und wird dieser entgeltlos zugestimmt
|
||||
</label>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user