Blame view

src/Template/Unites/view.ctp 2.18 KB
b3dceb2a   Alexis Proust   Ajout nouveaux fi...
1
2

<div class="unites view">
63c3cb16   epallier   Nombreux petits b...
3
4
5
6
7
8
9
	<h2>Détail unite</h2>
	<table style="margin-bottom: 30px;">

		<tr>
			<th style="width: 250px;"></th>
			<th></th>
		</tr>
b3dceb2a   Alexis Proust   Ajout nouveaux fi...
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
40
    	<?php
    if (in_array($role, [
        'Administration Plus',
        'Super Administrateur'
    ])) {
        echo $this->Html->link(__('<i class="icon-pencil"></i> Editer cette unite'), [
            'action' => 'edit',
            $unite->id
        ], [
            'escape' => false,
            'onclick' => 'return true;'
        ]);
    }
    
    if (in_array($role, [
        'Super Administrateur'
    ])) {
        echo $this->Form->postLink(__('<i class="icon-trash"></i> Supprimer cette unite'), [
            'action' => 'delete',
            $unite->id
        ], [
            'style' => 'margin-left: 110px',
            'escape' => false,
            'confirm' => __('Êtes-vous sur de vouloir supprimer # {0}?', $unite->id)
        ]);
    }
    
    $displayElement(__('Nom'), h($unite->nom));
    $displayElement(__('Symbole'), h($unite->symbole));
    ?>
b3dceb2a   Alexis Proust   Ajout nouveaux fi...
41
42
43


    </table>
63c3cb16   epallier   Nombreux petits b...
44
45
46
47
48
49

	<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="suivi" style="margin-bottom: 20px;">
b3dceb2a   Alexis Proust   Ajout nouveaux fi...
50
51

        <?php if (!empty($suivis)) { ?>
63c3cb16   epallier   Nombreux petits b...
52
53
54
55
56
        <table>
			<tr>
				<th style="width: 50px;"><?= __('Intitulé') ?></th>
				<th><?= __('Numero') ?></th>
			</tr> 	
b3dceb2a   Alexis Proust   Ajout nouveaux fi...
57
58
		<?php foreach ($suivis as $suivi): ?>
		<tr>
63c3cb16   epallier   Nombreux petits b...
59
60
61


				<td class="actions">
b3dceb2a   Alexis Proust   Ajout nouveaux fi...
62
63
                <?= $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...
64
65
				<td><?= $this->Html->link(h($suivi->id), ['controller' => 'Suivis', 'action' => 'view', h($suivi->id)]); ?></td>
			</tr>
b3dceb2a   Alexis Proust   Ajout nouveaux fi...
66
67
68
69
		<?php endforeach; ?> 
		</table> 
        <?php }else { echo 'Aucun suivi lié à cette unité.'; } ?>
    </div>
63c3cb16   epallier   Nombreux petits b...
70
71


b3dceb2a   Alexis Proust   Ajout nouveaux fi...
72
73
</div>

b2dade50   Prugniel   modifs Jeanne boo...
74
<!--
63c3cb16   epallier   Nombreux petits b...
75
<div class="actions">
b2dade50   Prugniel   modifs Jeanne boo...
76
77
			<php echo $this->element('menu') ?>
			<php
63c3cb16   epallier   Nombreux petits b...
78
79
80
81
82
83

echo $this->element('menu_view', [
    'pluralHumanName' => 'Unites',
    'singularHumanName' => 'Unite',
    'lien' => $unite->id
])?>
b2dade50   Prugniel   modifs Jeanne boo...
84
85
		</div>
-->