Blame view

src/Template/GroupesThematiques/add.ctp 555 Bytes
64fba1a2   Alexandre   Base du projet : ...
1

d6960faf   Alexandre   Migration de plus...
2
<div class="groupesThematiques form">
6c4edfa3   Alexandre   First Commit LabI...
3
4
    <?= $this->Form->create($groupesThematique) ?>
    <fieldset>
d6960faf   Alexandre   Migration de plus...
5
        <h2><i class="icon-plus"></i> Ajouter un groupe thématique</h2>
6c4edfa3   Alexandre   First Commit LabI...
6
7
8
9
10
        <?php
            echo $this->Form->input('nom');
            echo $this->Form->input('description');
        ?>
    </fieldset>
d6960faf   Alexandre   Migration de plus...
11
    <?= $this->Form->button(__('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' => 'Groupes Thématiques' ]);
	?>
</div>