Blame view

src/Template/SousCategories/add.ctp 594 Bytes
64fba1a2   Alexandre   Base du projet : ...
1

d6960faf   Alexandre   Migration de plus...
2
<div class="sousCategories form">
6c4edfa3   Alexandre   First Commit LabI...
3
4
    <?= $this->Form->create($sousCategory) ?>
    <fieldset>
d6960faf   Alexandre   Migration de plus...
5
        <h2><i class="icon-plus"></i> Ajouter une Sous-catégorie</h2>
6c4edfa3   Alexandre   First Commit LabI...
6
7
        <?php
            echo $this->Form->input('nom');
19798ef9   Alexandre   Mode_install, maj...
8
            echo $this->Form->input('categorie_id', ['label' => 'Catégorie', 'options' => $categories]);
6c4edfa3   Alexandre   First Commit LabI...
9
10
        ?>
    </fieldset>
0e5846aa   Alexandre   Css bouton valide...
11
    <?= $this->Form->submit(__('Valider')) ?>
6c4edfa3   Alexandre   First Commit LabI...
12
13
    <?= $this->Form->end() ?>
</div>
d6960faf   Alexandre   Migration de plus...
14
15
16
17
18
19
20

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