Blame view

src/Template/GroupesMetiers/view.ctp 4.45 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
    	<?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
        ], [
b2dade50   Prugniel   modifs Jeanne boo...
22
        	'style' => 'margin-right: 40px; display: inline-block',
63c3cb16   epallier   Nombreux petits b...
23
24
25
26
            'escape' => false,
            'onclick' => 'return true;'
        ]);
    }
4260780b   Alexandre   Migration vue, co...
27
    
63c3cb16   epallier   Nombreux petits b...
28
29
30
31
32
33
34
    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
        ], [
b2dade50   Prugniel   modifs Jeanne boo...
35
            'style' => 'display: inline-block',
63c3cb16   epallier   Nombreux petits b...
36
37
38
39
            'escape' => false,
            'confirm' => __('Êtes-vous sur de vouloir supprimer # {0}?', $groupesMetier->id)
        ]);
    }
4260780b   Alexandre   Migration vue, co...
40
    
63c3cb16   epallier   Nombreux petits b...
41
42
43
    $displayElement(__('Nom'), h($groupesMetier->nom));
    $displayElement(__('Description'), h($groupesMetier->description));
    ?>
4260780b   Alexandre   Migration vue, co...
44
45


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

	<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
53

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

63c3cb16   epallier   Nombreux petits b...
63
64
65
				<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
66
                <?= $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
67
			</td>
63c3cb16   epallier   Nombreux petits b...
68
			</tr>
3e24b686   Alexandre   Version: 2.4.2.20
69
70
		<?php endforeach; ?> 
		</table> 
3ef8f907   Alexandre   Version: 2.4.5.0
71
        <?php }else { echo 'Aucun utilisateur lié à ce '.$configuration->nom_groupe_metier; } ?>
3e24b686   Alexandre   Version: 2.4.2.20
72
    </div>
63c3cb16   epallier   Nombreux petits b...
73
74
75
76
77
78
79


	<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
80
81

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

63c3cb16   epallier   Nombreux petits b...
90
91
92
				<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
93
94
                <?= $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...
95
			</tr>
e9a0cc56   Alexandre   Version: 2.4.6.0
96
97
98
99
		<?php endforeach; ?> 
		</table> 
        <?php }else { echo 'Aucun suivi lié à ce '.$configuration->nom_groupe_metier; } ?>
    </div>
63c3cb16   epallier   Nombreux petits b...
100
101
102
103
104
105
106
107



	<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
108

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

63c3cb16   epallier   Nombreux petits b...
118
119
120
				<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
121
                <?= $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
122
			</td>
63c3cb16   epallier   Nombreux petits b...
123
			</tr>
3e24b686   Alexandre   Version: 2.4.2.20
124
125
		<?php endforeach; ?> 
		</table> 
3ef8f907   Alexandre   Version: 2.4.5.0
126
        <?php }else { echo 'Aucun matériel lié à ce '.$configuration->nom_groupe_metier; } ?>
3e24b686   Alexandre   Version: 2.4.2.20
127
    </div>
63c3cb16   epallier   Nombreux petits b...
128
129
130
131




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

b2dade50   Prugniel   modifs Jeanne boo...
134
<!--
63c3cb16   epallier   Nombreux petits b...
135
<div class="actions">
b2dade50   Prugniel   modifs Jeanne boo...
136
137
			<php echo $this->element('menu') ?>
			<php
63c3cb16   epallier   Nombreux petits b...
138
139
140
141
142
143

echo $this->element('menu_view', [
    'pluralHumanName' => $configuration->nom_groupe_metier . 's',
    'singularHumanName' => $configuration->nom_groupe_metier,
    'lien' => $groupesMetier->id
])?>
b2dade50   Prugniel   modifs Jeanne boo...
144
145
		</div>
-->