Blame view

src/Template/GroupesThematiques/edit.ctp 593 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>
63c3cb16   epallier   Nombreux petits b...
5
6
		<h2>
			<i class="icon-edit"></i> Editer un <?= $configuration->nom_groupe_thematique ?></h2>
6c4edfa3   Alexandre   First Commit LabI...
7
        <?php
39547043   Etienne Pallier   Mise à jour frame...
8
9
        echo $this->Form->control('nom');
        echo $this->Form->control('description');
6c4edfa3   Alexandre   First Commit LabI...
10
11
        ?>
    </fieldset>
0e5846aa   Alexandre   Css bouton valide...
12
    <?= $this->Form->submit(__('Valider')) ?>
6c4edfa3   Alexandre   First Commit LabI...
13
14
    <?= $this->Form->end() ?>
</div>
d6960faf   Alexandre   Migration de plus...
15
16

<div class="actions">
63c3cb16   epallier   Nombreux petits b...
17
18
19
20
21
22
	<?php
echo $this->element('menu');
echo $this->element('menu_form', [
    'pluralHumanName' => $configuration->nom_groupe_thematique . 's'
]);
?>
d6960faf   Alexandre   Migration de plus...
23
</div>