Blame view

src/Template/SousCategories/view.ctp 2.5 KB
64fba1a2   Alexandre   Base du projet : ...
1

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

<div class="sousCategories view">
63c3cb16   epallier   Nombreux petits b...
4
5
	<h2>Détail sous-catégorie</h2>
	<table style="margin-bottom: 30px;">
4260780b   Alexandre   Migration vue, co...
6

63c3cb16   epallier   Nombreux petits b...
7
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
		<tr>
			<th style="width: 250px;"></th>
			<th></th>
		</tr>
    	
    	<?php
    if (in_array($role, [
        'Administration Plus',
        'Super Administrateur'
    ])) {
        echo $this->Html->link(__('<i class="icon-pencil"></i> Editer cette sous-catégorie'), [
            'action' => 'edit',
            $sousCategory->id
        ], [
            'escape' => false,
            'onclick' => 'return true;'
        ]);
    }
    
    if (in_array($role, [
        'Super Administrateur'
    ])) {
        echo $this->Form->postLink(__('<i class="icon-trash"></i> Supprimer cette sous-catégorie'), [
            'action' => 'delete',
            $sousCategory->id
        ], [
            'style' => 'margin-left: 110px',
            'escape' => false,
            'confirm' => __('Êtes-vous sur de vouloir supprimer # {0}?', $sousCategory->id)
        ]);
    }
    
    $displayElement(__('Nom'), h($sousCategory->nom));
    $displayElement(__('Catégorie'), $sousCategory->has('category') ? $this->Html->link($sousCategory->category->nom, [
        'controller' => 'Categories',
        'action' => 'view',
        $sousCategory->category->id
    ]) : '');
    
    ?>
4260780b   Alexandre   Migration vue, co...
47

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

	<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
55
56

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

63c3cb16   epallier   Nombreux petits b...
65
66
67
				<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
68
69
                <?= $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...
70
			</tr>
3e24b686   Alexandre   Version: 2.4.2.20
71
72
		<?php endforeach; ?> 
		</table> 
c1cbc061   Thibaud Ajas   Bugfixes, correct...
73
        <?php }else { echo 'Aucun matériel lié à cette sous-catégorie.'; } ?>
3e24b686   Alexandre   Version: 2.4.2.20
74
    </div>
63c3cb16   epallier   Nombreux petits b...
75
76


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

63c3cb16   epallier   Nombreux petits b...
79
<div class="actions">
4260780b   Alexandre   Migration vue, co...
80
			<?php echo $this->element('menu') ?>
63c3cb16   epallier   Nombreux petits b...
81
82
83
84
85
86
87
			<?php

echo $this->element('menu_view', [
    'pluralHumanName' => 'Sous-Catégories',
    'singularHumanName' => 'Sous-Catégorie',
    'lien' => $sousCategory->id
])?>
4260780b   Alexandre   Migration vue, co...
88
		</div>