Blame view

src/Template/GroupesMetiers/view.ctp 4.37 KB
64fba1a2   Alexandre   Base du projet : ...
1

4260780b   Alexandre   Migration vue, co...
2
3

<div class="groupesMetiers view">
63c3cb16   epallier   Nombreux petits b...
4
5
6
7
8
9
10
11
	<h2>Détail groupes métier</h2>

	<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
14
15
16
17
18
19
20
21
22
23
24
25
    	<?php
    if (in_array($role, [
        'Administration Plus',
        'Super Administrateur'
    ])) {
        echo $this->Html->link(__('<i class="icon-pencil"></i> Editer ce ' . $configuration->nom_groupe_metier), [
            'action' => 'edit',
            $groupesMetier->id
        ], [
            'escape' => false,
            'onclick' => 'return true;'
        ]);
    }
4260780b   Alexandre   Migration vue, co...
26
    
63c3cb16   epallier   Nombreux petits b...
27
28
29
30
31
32
33
34
35
36
37
38
    if (in_array($role, [
        'Super Administrateur'
    ])) {
        echo $this->Form->postLink(__('<i class="icon-trash"></i> Supprimer ce ' . $configuration->nom_groupe_metier), [
            'action' => 'delete',
            $groupesMetier->id
        ], [
            'style' => 'margin-left: 110px',
            'escape' => false,
            'confirm' => __('Êtes-vous sur de vouloir supprimer # {0}?', $groupesMetier->id)
        ]);
    }
4260780b   Alexandre   Migration vue, co...
39
    
63c3cb16   epallier   Nombreux petits b...
40
41
42
    $displayElement(__('Nom'), h($groupesMetier->nom));
    $displayElement(__('Description'), h($groupesMetier->description));
    ?>
4260780b   Alexandre   Migration vue, co...
43
44


6c4edfa3   Alexandre   First Commit LabI...
45
    </table>
63c3cb16   epallier   Nombreux petits b...
46
47
48
49
50
51

	<h3 id="t_suivis" style="cursor: pointer;">
		<i class="icon-chevron-down" style="font-size: 14px;" id="i_suivis"></i>
		<span style="text-decoration: underline;">Utilisateurs associées (<?= $utilisateurs->count()?>)</span>
	</h3>
	<div id="suivis" style="margin-bottom: 20px;">
3e24b686   Alexandre   Version: 2.4.2.20
52

3ef8f907   Alexandre   Version: 2.4.5.0
53
        <?php if (!empty($utilisateurs)) { ?>
63c3cb16   epallier   Nombreux petits b...
54
55
56
57
58
        <table>
			<tr>
				<th><?= __('Nom') ?></th>
				<th style="width: 50px;"><?= __('Détail') ?></th>
			</tr> 	
3ef8f907   Alexandre   Version: 2.4.5.0
59
		<?php foreach ($utilisateurs as $utilisateur): ?>
3e24b686   Alexandre   Version: 2.4.2.20
60
		<tr>
3e24b686   Alexandre   Version: 2.4.2.20
61

63c3cb16   epallier   Nombreux petits b...
62
63
64
				<td><?= $this->Html->link(h($utilisateur->nom), ['controller' => 'Users', 'action' => 'view', h($utilisateur->id)]); ?></td>

				<td class="actions">
3ef8f907   Alexandre   Version: 2.4.5.0
65
                <?= $this->Html->link(__('<i class="icon-search"></i>'), ['controller' => 'Users', 'action' => 'view', $utilisateur->id], ['escape' => false, 'style' => 'margin:0']) ?>
3e24b686   Alexandre   Version: 2.4.2.20
66
			</td>
63c3cb16   epallier   Nombreux petits b...
67
			</tr>
3e24b686   Alexandre   Version: 2.4.2.20
68
69
		<?php endforeach; ?> 
		</table> 
3ef8f907   Alexandre   Version: 2.4.5.0
70
        <?php }else { echo 'Aucun utilisateur lié à ce '.$configuration->nom_groupe_metier; } ?>
3e24b686   Alexandre   Version: 2.4.2.20
71
    </div>
63c3cb16   epallier   Nombreux petits b...
72
73
74
75
76
77
78


	<h3 id="t_suivis" style="cursor: pointer;">
		<i class="icon-chevron-down" style="font-size: 14px;" id="i_suivis"></i>
		<span style="text-decoration: underline;">Suivis associées (<?= $suivis->count()?>)</span>
	</h3>
	<div id="suivis" style="margin-bottom: 20px;">
e9a0cc56   Alexandre   Version: 2.4.6.0
79
80

        <?php if (!empty($suivis)) { ?>
63c3cb16   epallier   Nombreux petits b...
81
82
83
84
85
        <table>
			<tr>
				<th><?= __('N° suivi') ?></th>
				<th style="width: 50px;"><?= __('Détail') ?></th>
			</tr> 	
e9a0cc56   Alexandre   Version: 2.4.6.0
86
87
		<?php foreach ($suivis as $suivi): ?>
		<tr>
e9a0cc56   Alexandre   Version: 2.4.6.0
88

63c3cb16   epallier   Nombreux petits b...
89
90
91
				<td><?= $this->Html->link('Suivi '.h($suivi->id), ['controller' => 'Suivis', 'action' => 'view', h($suivi->id)]); ?></td>

				<td class="actions">
e9a0cc56   Alexandre   Version: 2.4.6.0
92
93
                <?= $this->Html->link(__('<i class="icon-search"></i>'), ['controller' => 'Suivis', 'action' => 'view', $suivi->id], ['escape' => false, 'style' => 'margin:0']) ?>
			</td>
63c3cb16   epallier   Nombreux petits b...
94
			</tr>
e9a0cc56   Alexandre   Version: 2.4.6.0
95
96
97
98
		<?php endforeach; ?> 
		</table> 
        <?php }else { echo 'Aucun suivi lié à ce '.$configuration->nom_groupe_metier; } ?>
    </div>
63c3cb16   epallier   Nombreux petits b...
99
100
101
102
103
104
105
106



	<h3 id="t_suivis" style="cursor: pointer;">
		<i class="icon-chevron-down" style="font-size: 14px;" id="i_suivis"></i>
		<span style="text-decoration: underline;">Materiels associées (<?= $materiels->count()?>)</span>
	</h3>
	<div id="suivis" style="margin-bottom: 20px;">
3e24b686   Alexandre   Version: 2.4.2.20
107

3ef8f907   Alexandre   Version: 2.4.5.0
108
        <?php if (!empty($materiels)) { ?>
63c3cb16   epallier   Nombreux petits b...
109
110
111
112
113
        <table>
			<tr>
				<th><?= __('Désignation') ?></th>
				<th style="width: 50px;"><?= __('Détail') ?></th>
			</tr> 	
3ef8f907   Alexandre   Version: 2.4.5.0
114
		<?php foreach ($materiels as $materiel): ?>
3e24b686   Alexandre   Version: 2.4.2.20
115
		<tr>
3e24b686   Alexandre   Version: 2.4.2.20
116

63c3cb16   epallier   Nombreux petits b...
117
118
119
				<td><?= $this->Html->link(h($materiel->designation), ['controller' => 'Materiels', 'action' => 'view', h($materiel->id)]); ?></td>

				<td class="actions">
3ef8f907   Alexandre   Version: 2.4.5.0
120
                <?= $this->Html->link(__('<i class="icon-search"></i>'), ['controller' => 'Materiels', 'action' => 'view', $materiel->id], ['escape' => false, 'style' => 'margin:0']) ?>
3e24b686   Alexandre   Version: 2.4.2.20
121
			</td>
63c3cb16   epallier   Nombreux petits b...
122
			</tr>
3e24b686   Alexandre   Version: 2.4.2.20
123
124
		<?php endforeach; ?> 
		</table> 
3ef8f907   Alexandre   Version: 2.4.5.0
125
        <?php }else { echo 'Aucun matériel lié à ce '.$configuration->nom_groupe_metier; } ?>
3e24b686   Alexandre   Version: 2.4.2.20
126
    </div>
63c3cb16   epallier   Nombreux petits b...
127
128
129
130




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

63c3cb16   epallier   Nombreux petits b...
133
<div class="actions">
4260780b   Alexandre   Migration vue, co...
134
			<?php echo $this->element('menu') ?>
63c3cb16   epallier   Nombreux petits b...
135
136
137
138
139
140
141
			<?php

echo $this->element('menu_view', [
    'pluralHumanName' => $configuration->nom_groupe_metier . 's',
    'singularHumanName' => $configuration->nom_groupe_metier,
    'lien' => $groupesMetier->id
])?>
4260780b   Alexandre   Migration vue, co...
142
		</div>