Blame view

src/Template/TypeSuivis/view.ctp 2.95 KB
4260780b   Alexandre   Migration vue, co...
1
2

<div class="typeSuivis view">
de42b839   Etienne Pallier   Amelioration Suiv...
3

63c3cb16   epallier   Nombreux petits b...
4
	<h2>Détail du type de suivi</h2>
de42b839   Etienne Pallier   Amelioration Suiv...
5

63c3cb16   epallier   Nombreux petits b...
6
7
8
9
10
11
	<table style="margin-bottom: 30px;">

		<tr>
			<th style="width: 250px;"></th>
			<th></th>
		</tr>
4260780b   Alexandre   Migration vue, co...
12
    	
63c3cb16   epallier   Nombreux petits b...
13
    	<?php
de42b839   Etienne Pallier   Amelioration Suiv...
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
    	
    	// Bouton EDIT
        if (in_array($role, [
            'Administration Plus',
            'Super Administrateur'
        ])) {
            echo $this->Html->link(__('<i class="icon-pencil"></i> Editer ce type de suivi'), [
                'action' => 'edit',
                $typeSuivi->id
            ], [
                'style' => 'margin-right: 40px; display: inline-block',
                'escape' => false,
                'onclick' => 'return true;'
            ]);
        }
        
        // Bouton DELETE
        if (in_array($role, [
            'Super Administrateur'
        ])) {
            echo $this->Form->postLink(__('<i class="icon-trash"></i> Supprimer ce type de suivi'), [
                'action' => 'delete',
                $typeSuivi->id
            ], [
                'style' => 'display: inline-block',
                'escape' => false,
                'confirm' => __("Êtes-vous sûr de vouloir supprimer le suivi '$typeSuivi->nom' ?")
                //'confirm' => __("Êtes-vous sur de vouloir supprimer le suivi {0}?", $typeSuivi->id)
            ]);
        }
        
        // - Nom
        $displayElement(__('Nom'), h($typeSuivi->nom));
4260780b   Alexandre   Migration vue, co...
47

de42b839   Etienne Pallier   Amelioration Suiv...
48
        // - Régulier ?
07ffc697   Etienne Pallier   Amelioration Suiv...
49
50
51
52
        $displayElement(__('Suivi Régulier ?'), h($typeSuivi->is_regular)?"Oui":"Non");

        // - Métrologie ?
        $displayElement(__('Suivi lié à la Métrologie ?'), h($typeSuivi->is_metro)?"Oui":"Non");
de42b839   Etienne Pallier   Amelioration Suiv...
53
54
        
        ?>
64fba1a2   Alexandre   Base du projet : ...
55

6c4edfa3   Alexandre   First Commit LabI...
56
    </table>
63c3cb16   epallier   Nombreux petits b...
57

de42b839   Etienne Pallier   Amelioration Suiv...
58
59
60

	<!-- Suivis associés -->
	
63c3cb16   epallier   Nombreux petits b...
61
62
	<h3 id="t_suivis" style="cursor: pointer;">
		<i class="icon-chevron-down" style="font-size: 14px;" id="i_suivis"></i>
de42b839   Etienne Pallier   Amelioration Suiv...
63
		<span style="text-decoration: underline;">Suivis associés (<?= $suivis->count()?>)</span>
63c3cb16   epallier   Nombreux petits b...
64
	</h3>
de42b839   Etienne Pallier   Amelioration Suiv...
65
	
63c3cb16   epallier   Nombreux petits b...
66
	<div id="suivis" style="margin-bottom: 20px;">
3e24b686   Alexandre   Version: 2.4.2.20
67
68

        <?php if (!empty($suivis)) { ?>
3e24b686   Alexandre   Version: 2.4.2.20
69

de42b839   Etienne Pallier   Amelioration Suiv...
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
            <table>

    			<tr>
    				<th><?= __('Nom') ?></th>
    				<th style="width: 50px;"><?= __('Détail') ?></th>
    			</tr> 	

    			<?php foreach ($suivis as $suivi): ?>
    	    		<tr>
        
        				<td><?= $this->Html->link('Suivi '.h($suivi->id), ['controller' => 'Suivis', 'action' => 'view', h($suivi->id)]); ?></td>
        
        				<td class="actions">
    	                    <?= $this->Html->link(__('<i class="icon-search"></i>'), ['controller' => 'Suivis', 'action' => 'view', $suivi->id], ['escape' => false, 'style' => 'margin:0']) ?>
	        			</td>
        
        			</tr>
	    		<?php endforeach; ?> 
	
			</table> 
        
        <?php } 
            else echo 'Aucun suivi lié à ce type.';
        ?>
63c3cb16   epallier   Nombreux petits b...
94

3e24b686   Alexandre   Version: 2.4.2.20
95
    </div>
63c3cb16   epallier   Nombreux petits b...
96

6c4edfa3   Alexandre   First Commit LabI...
97
</div>
4260780b   Alexandre   Migration vue, co...
98

b2dade50   Prugniel   modifs Jeanne boo...
99
<!--
63c3cb16   epallier   Nombreux petits b...
100
<div class="actions">
b2dade50   Prugniel   modifs Jeanne boo...
101
102
			<php echo $this->element('menu') ?>
			<php
63c3cb16   epallier   Nombreux petits b...
103
104
105
106
107
108

echo $this->element('menu_view', [
    'pluralHumanName' => 'Types Suivis',
    'singularHumanName' => 'Type Suivi',
    'lien' => $typeSuivi->id
])?>
b2dade50   Prugniel   modifs Jeanne boo...
109
110
		</div>
-->