Blame view

src/Template/Sites/view.ctp 3.08 KB
4260780b   Alexandre   Migration vue, co...
1
2

<div class="sites view">
63c3cb16   epallier   Nombreux petits b...
3
4
5
6
7
8
9
	<h2>Détail site</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
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
    	<?php
    if (in_array($role, [
        'Administration Plus',
        'Super Administrateur'
    ])) {
        echo $this->Html->link(__('<i class="icon-pencil"></i> Editer ce site'), [
            'action' => 'edit',
            $site->id
        ], [
            'escape' => false,
            'onclick' => 'return true;'
        ]);
    }
    
    if (in_array($role, [
        'Super Administrateur'
    ])) {
        echo $this->Form->postLink(__('<i class="icon-trash"></i> Supprimer ce site'), [
            'action' => 'delete',
            $site->id
        ], [
            'style' => 'margin-left: 110px',
            'escape' => false,
            'confirm' => __('Êtes-vous sur de vouloir supprimer # {0}?', $site->id)
        ]);
    }
    
    $displayElement(__('Nom'), h($site->nom));
    ?>
4260780b   Alexandre   Migration vue, co...
40

64fba1a2   Alexandre   Base du projet : ...
41

6c4edfa3   Alexandre   First Commit LabI...
42
    </table>
63c3cb16   epallier   Nombreux petits b...
43
44
45
46
47
48

	<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;">Emprunts associées (<?= $emprunts->count()?>)</span>
	</h3>
	<div id="suivis" style="margin-bottom: 20px;">
3e24b686   Alexandre   Version: 2.4.2.20
49
50

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

63c3cb16   epallier   Nombreux petits b...
59
60
61
				<td><?= $this->Html->link('Emprunt '.h($emprunt->id), ['controller' => 'Emprunts', 'action' => 'view', h($emprunt->id)]); ?></td>

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

	<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
75
76

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

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

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


63c3cb16   epallier   Nombreux petits b...
99
<div class="actions">
4260780b   Alexandre   Migration vue, co...
100
			<?php echo $this->element('menu') ?>
63c3cb16   epallier   Nombreux petits b...
101
102
103
104
105
106
107
			<?php

echo $this->element('menu_view', [
    'pluralHumanName' => 'Sites',
    'singularHumanName' => 'Site',
    'lien' => $site->id
])?>
4260780b   Alexandre   Migration vue, co...
108
		</div>