Blame view

src/Template/SurCategories/view.ctp 3.24 KB
64fba1a2   Alexandre   Base du projet : ...
1

4260780b   Alexandre   Migration vue, co...
2
<div class="surCategories view">
63c3cb16   epallier   Nombreux petits b...
3
4
5
6
7
8
9
	<h2>Détail domaine</h2>
	<table style="margin-bottom: 30px;">

		<tr>
			<th style="width: 250px;"></th>
			<th></th>
		</tr>
4260780b   Alexandre   Migration vue, co...
10
    	
63c3cb16   epallier   Nombreux petits b...
11
12
13
14
15
16
17
18
19
    	<?php
    if (in_array($role, [
        'Administration Plus',
        'Super Administrateur'
    ])) {
        echo $this->Html->link(__('<i class="icon-pencil"></i> Editer ce domaine'), [
            'action' => 'edit',
            $surCategory->id
        ], [
b2dade50   Prugniel   modifs Jeanne boo...
20
        	'style' => 'margin-right: 40px; display: inline-block',
63c3cb16   epallier   Nombreux petits b...
21
22
23
24
25
26
27
28
29
30
31
32
            'escape' => false,
            'onclick' => 'return true;'
        ]);
    }
    
    if (in_array($role, [
        'Super Administrateur'
    ])) {
        echo $this->Form->postLink(__('<i class="icon-trash"></i> Supprimer ce domaine'), [
            'action' => 'delete',
            $surCategory->id
        ], [
b2dade50   Prugniel   modifs Jeanne boo...
33
            'style' => 'display: inline-block',
63c3cb16   epallier   Nombreux petits b...
34
35
36
37
38
39
40
41
            'escape' => false,
            'confirm' => __('Êtes-vous sur de vouloir supprimer # {0}?', $surCategory->id)
        ]);
    }
    
    $displayElement(__('Nom'), h($surCategory->nom));
    
    ?>
4260780b   Alexandre   Migration vue, co...
42

63c3cb16   epallier   Nombreux petits b...
43
    </table>
4260780b   Alexandre   Migration vue, co...
44

4260780b   Alexandre   Migration vue, co...
45

63c3cb16   epallier   Nombreux petits b...
46
47
48
49
50
	<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;">Catégories associées (<?= $categories->count() ?>)</span>
	</h3>
	<div id="suivis" style="margin-bottom: 20px;">
19798ef9   Alexandre   Mode_install, maj...
51
52

        <?php if (!empty($categories)) { ?>
63c3cb16   epallier   Nombreux petits b...
53
54
55
56
57
        <table>
			<tr>
				<th><?= __('Nom') ?></th>
				<th style="width: 50px;"><?= __('Détail') ?></th>
			</tr> 	
19798ef9   Alexandre   Mode_install, maj...
58
59
		<?php foreach ($categories as $category): ?>
		<tr>
63c3cb16   epallier   Nombreux petits b...
60
				<td><?= $this->Html->link(h($category->nom), ['controller' => 'Categories', 'action' => 'view', h($category->id)]); ?></td>
19798ef9   Alexandre   Mode_install, maj...
61

63c3cb16   epallier   Nombreux petits b...
62
				<td class="actions">
19798ef9   Alexandre   Mode_install, maj...
63
64
                <?= $this->Html->link(__('<i class="icon-search"></i>'), ['controller' => 'Categories', 'action' => 'view', $category->id], ['escape' => false, 'style' => 'margin:0']) ?>
			</td>
63c3cb16   epallier   Nombreux petits b...
65
			</tr>
19798ef9   Alexandre   Mode_install, maj...
66
67
68
69
		<?php endforeach; ?> 
		</table> 
        <?php }else { echo 'Aucune catégorie lié à ce domaine.'; } ?>
    </div>
63c3cb16   epallier   Nombreux petits b...
70
71
72
73
74
75
76


	<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
77
78

        <?php if (!empty($materiels)) { ?>
63c3cb16   epallier   Nombreux petits b...
79
80
81
82
83
        <table>
			<tr>
				<th><?= __('Désignation') ?></th>
				<th style="width: 50px;"><?= __('Détail') ?></th>
			</tr> 	
3e24b686   Alexandre   Version: 2.4.2.20
84
85
		<?php foreach ($materiels as $materiel): ?>
		<tr>
3e24b686   Alexandre   Version: 2.4.2.20
86

63c3cb16   epallier   Nombreux petits b...
87
88
89
				<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
90
91
                <?= $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...
92
			</tr>
3e24b686   Alexandre   Version: 2.4.2.20
93
94
95
96
		<?php endforeach; ?> 
		</table> 
        <?php }else { echo 'Aucun matériel lié à ce domaine.'; } ?>
    </div>
63c3cb16   epallier   Nombreux petits b...
97

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

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

echo $this->element('menu_view', [
    'pluralHumanName' => 'Domaines',
    'singularHumanName' => 'Domaine',
    'lien' => $surCategory->id
])?>
b2dade50   Prugniel   modifs Jeanne boo...
110
111
		</div>
-->