Blame view

src/Template/Fournisseurs/add.ctp 481 Bytes
b3dceb2a   Alexis Proust   Ajout nouveaux fi...
1
2
3
4

<div class="fournisseurs form">
    <?= $this->Form->create($fournisseur) ?>
    <fieldset>
63c3cb16   epallier   Nombreux petits b...
5
6
7
		<h2>
			<i class="icon-plus"></i> Ajouter un fournisseur
		</h2>
b3dceb2a   Alexis Proust   Ajout nouveaux fi...
8
        <?php
39547043   Etienne Pallier   Mise à jour frame...
9
        echo $this->Form->control('nom');
b3dceb2a   Alexis Proust   Ajout nouveaux fi...
10
11
12
13
14
15
        ?>
    </fieldset>
    <?= $this->Form->submit(__('Valider')) ?>
    <?= $this->Form->end() ?>
</div>

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