Blame view

src/Template/Unites/edit.ctp 493 Bytes
b3dceb2a   Alexis Proust   Ajout nouveaux fi...
1
2
3
4

<div class="unites form">
    <?= $this->Form->create($unite) ?>
    <fieldset>
63c3cb16   epallier   Nombreux petits b...
5
6
7
		<h2>
			<i class="icon-edit"></i> Editer une unitée
		</h2>
b3dceb2a   Alexis Proust   Ajout nouveaux fi...
8
        <?php
63c3cb16   epallier   Nombreux petits b...
9
10
        echo $this->Form->input('nom');
        echo $this->Form->input('symbole');
b3dceb2a   Alexis Proust   Ajout nouveaux fi...
11
12
13
14
15
16
17
        ?>
    </fieldset>
    <?= $this->Form->submit(__('Valider')) ?>
    <?= $this->Form->end() ?>
</div>

<div class="actions">
63c3cb16   epallier   Nombreux petits b...
18
19
20
21
22
23
	<?php
echo $this->element('menu');
echo $this->element('menu_form', [
    'pluralHumanName' => 'Unites'
]);
?>
b3dceb2a   Alexis Proust   Ajout nouveaux fi...
24
</div>