add.ctp
759 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<div class="typeSuivis form col-lg-5 col-md-7 col-sm-9">
<?= $this->Form->create($typeSuivi) ?>
<fieldset>
<h2>
<i class="icon-plus"></i> Ajouter un type de suivi
</h2>
<?php
echo $this->Form->control('nom');
echo $this->Form->control('is_regular', [
'label' => 'Suivi Régulier'
]);
echo $this->Form->control('is_metro', [
'label' => 'Suivi lié à la Métrologie'
]);
?>
</fieldset>
<?= $this->Form->submit(__('Valider')) ?>
<?= $this->Form->end() ?>
</div>
<!--
<div class="actions">
<php
echo $this->element('menu');
echo $this->element('menu_form', [
'pluralHumanName' => 'Types Suivis'
]);
?>
</div>
-->