Non puoi selezionare più di 25 argomenti
Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
37 righe
1.7 KiB
37 righe
1.7 KiB
<?php |
|
/** |
|
* @var \App\View\AppView $this |
|
* @var \App\Model\Entity\WaterDrawingIntendedUse $waterDrawingIntendedUse |
|
* @var \Cake\Collection\CollectionInterface|string[] $waterDrawingPaperworks |
|
* @var \Cake\Collection\CollectionInterface|string[] $waterDrawingIntendedUseTypes |
|
*/ |
|
?> |
|
<div class="row"> |
|
<aside class="column"> |
|
<div class="side-nav"> |
|
<h4 class="heading"><?= __('Actions') ?></h4> |
|
<?= $this->Html->link(__('List Water Drawing Intended Uses'), ['action' => 'index'], ['class' => 'side-nav-item']) ?> |
|
</div> |
|
</aside> |
|
<div class="column-responsive column-80"> |
|
<div class="waterDrawingIntendedUses form content"> |
|
<?= $this->Form->create($waterDrawingIntendedUse) ?> |
|
<fieldset> |
|
<legend><?= __('Add Water Drawing Intended Use') ?></legend> |
|
<?php |
|
echo $this->Form->control('area'); |
|
echo $this->Form->control('cadastral_code'); |
|
echo $this->Form->control('cadastral_sheet'); |
|
echo $this->Form->control('cadastral_parcel'); |
|
echo $this->Form->control('watering_system'); |
|
echo $this->Form->control('consortium_area'); |
|
echo $this->Form->control('rated_power_produced'); |
|
echo $this->Form->control('water_drawing_paperwork_id', ['options' => $waterDrawingPaperworks]); |
|
echo $this->Form->control('water_drawing_intended_use_type_id', ['options' => $waterDrawingIntendedUseTypes, 'empty' => true]); |
|
?> |
|
</fieldset> |
|
<?= $this->Form->button(__('Submit')) ?> |
|
<?= $this->Form->end() ?> |
|
</div> |
|
</div> |
|
</div>
|
|
|