Blame view

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

<div class="organismes view">
63c3cb16   epallier   Nombreux petits b...
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
	<h2>Détail organisme</h2>

	<table style="margin-bottom: 30px;">

		<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 cet organisme'), [
            'action' => 'edit',
            $organisme->id
        ], [
b2dade50   Prugniel   modifs Jeanne boo...
21
            'style' => 'margin-right: 40px; display: inline-block',
63c3cb16   epallier   Nombreux petits b...
22
23
24
25
            'escape' => false,
            'onclick' => 'return true;'
        ]);
    }
4260780b   Alexandre   Migration vue, co...
26
    
63c3cb16   epallier   Nombreux petits b...
27
28
29
30
31
32
33
    if (in_array($role, [
        'Super Administrateur'
    ])) {
        echo $this->Form->postLink(__('<i class="icon-trash"></i> Supprimer cet organisme'), [
            'action' => 'delete',
            $organisme->id
        ], [
b2dade50   Prugniel   modifs Jeanne boo...
34
            'style' => 'display: inline-block',
63c3cb16   epallier   Nombreux petits b...
35
36
37
38
            'escape' => false,
            'confirm' => __('Êtes-vous sur de vouloir supprimer # {0}?', $organisme->id)
        ]);
    }
4260780b   Alexandre   Migration vue, co...
39
    
63c3cb16   epallier   Nombreux petits b...
40
41
    $displayElement(__('Nom'), h($organisme->nom));
    ?>
4260780b   Alexandre   Migration vue, co...
42

64fba1a2   Alexandre   Base du projet : ...
43

6c4edfa3   Alexandre   First Commit LabI...
44
    </table>
63c3cb16   epallier   Nombreux petits b...
45
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;">Materiels associées (<?= $materiels->count()?>)</span>
	</h3>
	<div id="suivis" style="margin-bottom: 20px;">
3e24b686   Alexandre   Version: 2.4.2.20
52
53

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

63c3cb16   epallier   Nombreux petits b...
62
63
64
				<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
65
66
                <?= $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...
67
			</tr>
3e24b686   Alexandre   Version: 2.4.2.20
68
69
70
71
		<?php endforeach; ?> 
		</table> 
        <?php }else { echo 'Aucun matériel lié à cet organisme.'; } ?>
    </div>
63c3cb16   epallier   Nombreux petits b...
72
73
74
75




6c4edfa3   Alexandre   First Commit LabI...
76
</div>
63c3cb16   epallier   Nombreux petits b...
77

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

echo $this->element('menu_view', [
    'pluralHumanName' => 'Organismes',
    'singularHumanName' => 'Organisme',
    'lien' => $organisme->id
])?>
b2dade50   Prugniel   modifs Jeanne boo...
88
89
		</div>
-->