Blame view

src/Template/Organismes/edit.ctp 467 Bytes
64fba1a2   Alexandre   Base du projet : ...
1

d6960faf   Alexandre   Migration de plus...
2
<div class="organismes form">
6c4edfa3   Alexandre   First Commit LabI...
3
4
    <?= $this->Form->create($organisme) ?>
    <fieldset>
d6960faf   Alexandre   Migration de plus...
5
        <h2><i class="icon-edit"></i> Editer un Organisme</h2>
6c4edfa3   Alexandre   First Commit LabI...
6
7
8
9
        <?php
            echo $this->Form->input('nom');
        ?>
    </fieldset>
0e5846aa   Alexandre   Css bouton valide...
10
    <?= $this->Form->submit(__('Valider')) ?>
6c4edfa3   Alexandre   First Commit LabI...
11
12
    <?= $this->Form->end() ?>
</div>
d6960faf   Alexandre   Migration de plus...
13
14
15
16
17
18
19

<div class="actions">
	<?php 
		echo $this->element('menu');
		echo $this->element('menu_form', [ 'pluralHumanName' => 'Organismes' ]);
	?>
</div>