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.
49 righe
1.6 KiB
49 righe
1.6 KiB
<?php |
|
echo $this->Breadcrumb->render([ |
|
[ |
|
'title' => 'Home', |
|
'icon' => 'fa fa-home', |
|
'url' => '/', |
|
], |
|
[ |
|
'title' => __('Documenti'), |
|
'icon' => 'fa fa-book', |
|
], |
|
[ |
|
'title' => __('Lista Pratiche di attingimento'), |
|
'icon' => 'fa fa-list', |
|
'url' => ['controller' => 'WaterDrawingPaperworks', 'action' => 'index'], |
|
], |
|
[ |
|
'title' => __('Carica antimafia alla Pratica di attingimento'), |
|
'icon' => 'fa fa-plus', |
|
], |
|
]); |
|
?> |
|
|
|
<div class="card card-primary card-outline"> |
|
<div class="card-header d-sm-flex"> |
|
<h2 class="card-title"><?= __('Carica antimafia alla Pratica di attingimento') ?></h2> |
|
</div> |
|
<?php echo $this->Form->create($waterDrawingPaperwork, ['role' => 'form', 'type' => 'file']); ?> |
|
<div class="card-body"> |
|
<?php |
|
echo $this->element('attachments', [ |
|
'filepicker' => true, |
|
'viewer' => false, |
|
'currentFilesRemovable' => false, |
|
'tags' => $tag, |
|
'required' => true, |
|
'upload_single' => true, |
|
'accept_only' => ['.pdf'] |
|
]); |
|
echo $this->Form->hidden('authority_identification_code_civil_engineering_office', ['label' => __('Codice identificativo Concessione Ufficio Genio civile (es. AA0000)'), 'type' => 'text', 'pattern' => '[a-zA-Z]{2}[0-9]{4}', 'required' => true]); |
|
?> |
|
</div> |
|
<div class="card-footer d-flex"> |
|
<div class="ml-auto"> |
|
<?php echo $this->Form->submit(__('Carica'), ['class' => 'btn btn-success']); ?> |
|
</div> |
|
</div> |
|
<?php echo $this->Form->end(); ?> |
|
</div>
|
|
|