Blame view

src/Template/GroupesThematiques/view.ctp 4.46 KB
64fba1a2   Alexandre   Base du projet : ...
1

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

<div class="groupesThematiques view">
63c3cb16   epallier   Nombreux petits b...
4
5
6
7
8
9
10
11
	<h2>Détail <?= $configuration->nom_groupe_thematique ?></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_thematique), [
            'action' => 'edit',
            $groupesThematique->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_thematique), [
            'action' => 'delete',
            $groupesThematique->id
        ], [
            'style' => 'margin-left: 110px',
            'escape' => false,
            'confirm' => __('Êtes-vous sur de vouloir supprimer # {0}?', $groupesThematique->id)
        ]);
    }
4260780b   Alexandre   Migration vue, co...
39
    
63c3cb16   epallier   Nombreux petits b...
40
41
42
    $displayElement(__('Nom'), h($groupesThematique->nom));
    $displayElement(__('Description'), h($groupesThematique->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;">
3ef8f907   Alexandre   Version: 2.4.5.0
52
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
60
		<?php foreach ($utilisateurs as $utilisateur): ?>
		<tr>
3ef8f907   Alexandre   Version: 2.4.5.0
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
66
                <?= $this->Html->link(__('<i class="icon-search"></i>'), ['controller' => 'Users', 'action' => 'view', $utilisateur->id], ['escape' => false, 'style' => 'margin:0']) ?>
			</td>
63c3cb16   epallier   Nombreux petits b...
67
			</tr>
3ef8f907   Alexandre   Version: 2.4.5.0
68
69
70
71
		<?php endforeach; ?> 
		</table> 
        <?php }else { echo 'Aucun utilisateur lié à ce '.$configuration->nom_groupe_thematique; } ?>
    </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_thematique; } ?>
    </div>
63c3cb16   epallier   Nombreux petits b...
99
100
101
102
103
104
105


	<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
106
107

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

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

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



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

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

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