Blame view

src/Template/Fichemetrologiques/edit.ctp 1.31 KB
b3dceb2a   Alexis Proust   Ajout nouveaux fi...
1
2
3
4
5
6

<div class="suivis form">
    <?= $this->Form->create($fichemetrologique) ?>
    <fieldset>
        <h2><i class="icon-plus"></i> Edit une fiche métrologique</h2>
        <?php
2389dbd8   Thibaud Ajas   bugfixes lies au ...
7
        echo $this->Form->hidden('suivi_id',['default' => $this->request->params['pass'][0]]);
b3dceb2a   Alexis Proust   Ajout nouveaux fi...
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
        
        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>