Blame view

src/Template/Sites/index.ctp 2.53 KB
64fba1a2   Alexandre   Base du projet : ...
1

96b028a1   Alexandre   Migration de tout...
2
<div class="sites index">
8dff32eb   Etienne Pallier   Premiers bugfixes...
3
4
5
6
7
8
9
	
	<!--  TITRE  -->
	<?php echo '<h2><i class="icon-list"></i> Liste des sites</h2>'; ?>
	
	<!-- Bouton "Ajouter" pour ajouter un nouvel élément (ssi autorisé) -->
	<?=$this->element('button_add'); ?>
	<!-- 
33b54375   Etienne Pallier   Premiers bugfixes...
10
	<=$this->element('button_add', ['singularHumanName' => 'Site']); ?>
8dff32eb   Etienne Pallier   Premiers bugfixes...
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
	<div id="boutons" class="actions" style="margin-bottom:5px; width:100%; float:none; padding:5px 0;">
	<php
	    //$entity = $this->request->controller; // controller name (Sites, Suivis, Organismes, ...)
	    $bStyle = 'margin-right: 10px';
	    $CAN_ADD = false;
	    if (
            in_array($role, ['Administration Plus','Super Administrateur'])
	        ||
	        in_array($singularHumanName, ['Matériel','Suivi','Emprunt','Fournisseur'])
	    ) $CAN_ADD = true;
	    if ($CAN_ADD) $echoActionButton($this->Html, 'icon-plus', $bStyle, ' Ajouter', $this->request->controller, 'add', null);
    ?>
    </div>
	-->
	
b2dade50   Prugniel   modifs Jeanne boo...
26
    <table style="border-collapse: separate; border-spacing: 0; width: 270px;">
8dff32eb   Etienne Pallier   Premiers bugfixes...
27
    
63c3cb16   epallier   Nombreux petits b...
28
29
30
31
		<thead>
			<tr>
				<th class="actions"><?= __('') ?></th>
				<th><?= $this->Paginator->sort('nom', 'Nom') ?></th>
63c3cb16   epallier   Nombreux petits b...
32
33
			</tr>
		</thead>
8dff32eb   Etienne Pallier   Premiers bugfixes...
34
		
63c3cb16   epallier   Nombreux petits b...
35
		<tbody>
8dff32eb   Etienne Pallier   Premiers bugfixes...
36
37
			<?php
			foreach ($sites as $site) {
63c3cb16   epallier   Nombreux petits b...
38
                if ($site->id != 9) {
8dff32eb   Etienne Pallier   Premiers bugfixes...
39
40
41
42
43
44
45
46
47
48
49
50
            ?>
                    <tr>
        				<td class="actions" style="padding: 6px 0; text-align: left;">             
                            <?php 
                            if (in_array($role, ['Administration Plus', 'Super Administrateur']))
                                echo $this->Html->link(__('<i class="icon-pencil"></i>'), ['action' => 'edit', $site->id], ['title' => 'Editer', 'style' => 'margin: 0 2px', 'escape' => false ]);
                            if (in_array($role, ['Super Administrateur']))
                                echo $this->Form->postLink(__('<i class="icon-trash"></i>'), ['action' => 'delete', $site->id], ['title' => 'Supprimer', 'style' => 'margin: 0 2px', 'escape' => false, 'confirm' => __('Êtes-vous sur de vouloir supprimer # {0}?', $site->id)]);
                        	?>
                        </td>
        				<td class="smallText"><?= $this->Html->link($site->nom, ['action' => 'view', $site->id]) ?></td>
        			</tr>
63c3cb16   epallier   Nombreux petits b...
51
            <?php
8dff32eb   Etienne Pallier   Premiers bugfixes...
52
53
                } // if
    		} // foreach
63c3cb16   epallier   Nombreux petits b...
54
            ?>
8dff32eb   Etienne Pallier   Premiers bugfixes...
55
56
		</tbody>

63c3cb16   epallier   Nombreux petits b...
57
	</table>
96b028a1   Alexandre   Migration de tout...
58

9478e982   Etienne Pallier   refactorisation d...
59
60
	<?php echo $this->element('pagination'); ?> 
    
6c4edfa3   Alexandre   First Commit LabI...
61
</div>
4260780b   Alexandre   Migration vue, co...
62

b2dade50   Prugniel   modifs Jeanne boo...
63
<!--
63c3cb16   epallier   Nombreux petits b...
64
<div class="actions">
b2dade50   Prugniel   modifs Jeanne boo...
65
66
			<php echo $this->element('menu') ?>
			<php
63c3cb16   epallier   Nombreux petits b...
67
68
69
70
71

echo $this->element('menu_index', [
    'pluralHumanName' => 'Sites',
    'singularHumanName' => 'Site'
])?>
b2dade50   Prugniel   modifs Jeanne boo...
72
73
		</div>
-->