Blame view

src/Template/Documents/edit.ctp 543 Bytes
64fba1a2   Alexandre   Base du projet : ...
1

6c4edfa3   Alexandre   First Commit LabI...
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<div class="documents form large-9 medium-8 columns content">
    <?= $this->Form->create($document) ?>
    <fieldset>
        <legend><?= __('Edit Document') ?></legend>
        <?php
            echo $this->Form->input('type_doc');
            echo $this->Form->input('chemin');
            echo $this->Form->input('materiel_id', ['options' => $materiels]);
            echo $this->Form->input('suivi_id', ['options' => $suivis]);
        ?>
    </fieldset>
    <?= $this->Form->button(__('Submit')) ?>
    <?= $this->Form->end() ?>
</div>