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.
42 righe
2.0 KiB
42 righe
2.0 KiB
<?php |
|
/** |
|
* @var \App\View\AppView $this |
|
* @var \App\Model\Entity\WaterDrawingIntendedUse $waterDrawingIntendedUse |
|
* @var string[]|\Cake\Collection\CollectionInterface $waterDrawingPaperworks |
|
* @var string[]|\Cake\Collection\CollectionInterface $waterDrawingIntendedUseTypes |
|
*/ |
|
?> |
|
<div class="row"> |
|
<aside class="column"> |
|
<div class="side-nav"> |
|
<h4 class="heading"><?= __('Actions') ?></h4> |
|
<?= $this->Form->postLink( |
|
__('Delete'), |
|
['action' => 'delete', $waterDrawingIntendedUse->id], |
|
['confirm' => __('Are you sure you want to delete # {0}?', $waterDrawingIntendedUse->id), 'class' => 'side-nav-item'] |
|
) ?> |
|
<?= $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><?= __('Edit 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>
|
|
|