edit.ctp
1.5 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<div class="suivis form">
<?= $this->Form->create($fichemetrologique) ?>
<fieldset>
<h2>
<i class="icon-plus"></i> Edit une fiche métrologique
</h2>
<?php
echo $this->Form->hidden('suivi_id', [
'default' => $this->request->getAttribute('params')['pass'][0]
]);
echo $this->Form->input('typemesure', [
'label' => 'type de mesure',
'options' => [
'direct',
'indirect'
],
'default' => 'direct'
]);
echo $this->Form->input('resolution', [
'label' => 'resolution',
'options' => [
'numerique',
'cadran'
],
'default' => 'numerique'
]);
echo $this->Form->input('emtpersonnel', [
'label' => 'emt personnel'
]);
echo $this->Form->input('conditionenvironnement', [
'label' => 'condition environnement'
]);
echo $this->Form->input('etatmateriel', [
'label' => 'etat du materiel'
]);
echo $this->Form->input('neuf', [
'type' => 'checkbox',
'default' => false
]);
?>
</fieldset>
<?= $this->Form->submit(__('Enregistrer')) ?>
<?= $this->Form->end() ?>
</div>
<div class="actions">
<?php
echo $this->element('menu');
echo $this->element('menu_form', [
'pluralHumanName' => 'Suivis'
]);
?>
</div>
<script type="text/javascript">
</script>