Blame view

src/Template/Suivis/index.ctp 3.61 KB
64fba1a2   Alexandre   Base du projet : ...
1
2

<div class="suivis index">
183ce554   Alexandre   Ajout de test, su...
3
<?php echo '<h2><i class="icon-list"></i> Liste des suivis ('.$nbSuivis.')</h2>'; ?>
d653b27f   Thibaud Ajas   Correction de fau...
4
    <table style="border-collapse: separate; border-spacing: 0;">
6c4edfa3   Alexandre   First Commit LabI...
5
6
        <thead>
            <tr>
0ea7290f   Alexandre   Version: 2.5.4.2
7
            	<th class="actions"><?= __('') ?></th>
64fba1a2   Alexandre   Base du projet : ...
8
9
10
                <th><?= $this->Paginator->sort('id', 'N°') ?></th>
                <th><?= $this->Paginator->sort('materiel_id', 'Matériel') ?></th>
                <th><?= $this->Paginator->sort('numero_laboratoire', 'N° interne (labo)') ?></th>
7bcf546d   Alexis Proust   mise a jour fichier
11
				<th><?= $this->Paginator->sort('intitule', "Intitulé") ?></th>
64fba1a2   Alexandre   Base du projet : ...
12
13
                <th><?= $this->Paginator->sort('date_controle', 'Date intervention') ?></th>
                <th><?= $this->Paginator->sort('date_prochain_controle', 'Date prochaine intervention') ?></th>
ebe38bef   Alexandre   #3586 Ajout assoc...
14
                <th><?= $this->Paginator->sort('type_suivi_id', "Type d'intervention") ?></th>
7bcf546d   Alexis Proust   mise a jour fichier
15
				<th><?= $this->Paginator->sort('statut', "Statut") ?></th>
0ea7290f   Alexandre   Version: 2.5.4.2
16
                
6c4edfa3   Alexandre   First Commit LabI...
17
18
19
20
21
            </tr>
        </thead>
        <tbody>
            <?php foreach ($suivis as $suivi): ?>
            <tr>
0ea7290f   Alexandre   Version: 2.5.4.2
22
                <td class="actions" style="padding: 6px 0; text-align: left;">
602e9d7a   Alexandre   Version: 2.5.5.0
23
24
25
26
                    <?php if(($role == 'Utilisateur' && in_array($username, [$suivi->nom_createur])) || (in_array($role, ['Administration', 'Administration Plus', 'Super Administrateur']))
                    		|| ($role == 'Responsable' && 
									((isset($userConnected->groupes_metier_id) && $userConnected->groupes_metier_id != $idGmNa && $suivi->groupes_metier_id == $userConnected->groupes_metier_id)
									 ||(isset($userConnected->groupe_thematique_id) && $userConnected->groupe_thematique_id != $idGtNa && $suivi->groupes_thematique_id == $userConnected->groupe_thematique_id)))) { ?>
0ea7290f   Alexandre   Version: 2.5.4.2
27
28
29
30
                    <?= $this->Html->link(__('<i class="icon-pencil"></i>'), ['action' => 'edit', $suivi->id], ['title' => 'Editer', 'style' => 'margin: 0 2px', 'escape' => false ]) ?>
                    <?= $this->Form->postLink(__('<i class="icon-trash"></i>'), ['action' => 'delete', $suivi->id], ['title' => 'Supprimer', 'style' => 'margin: 0 2px', 'escape' => false, 'confirm' => __('Êtes-vous sur de vouloir supprimer # {0}?', $suivi->id)]) ?>
              		<?php } ?>
                </td>
5d0d680d   Alexandre   Version: 2.2.0
31
32
33
                <td class="smallText"><?php echo $this->Html->link('Suivi '.$this->Number->format($suivi->id), ['action' => 'view', $suivi->id])?></td>
                <td class="smallText"><?= $suivi->has('materiel') ? $this->Html->link($suivi->materiel->designation, ['controller' => 'Materiels', 'action' => 'view', $suivi->materiel->id]) : '' ?></td>
                <td class="smallText"><?= $suivi->has('materiel') ? h($suivi->materiel->numero_laboratoire) : '' ?></td>
7bcf546d   Alexis Proust   mise a jour fichier
34
				<td class="smallText"><?= h($suivi->intitule) ?></td>
5d0d680d   Alexandre   Version: 2.2.0
35
36
37
                <td class="smallText"><?= h($suivi->date_controle) ?></td>
                <td class="smallText"><?= h($suivi->date_prochain_controle) ?></td>
                <td class="smallText"><?= $suivi->has('type_suivi') ? h($suivi->type_suivi->nom) : ''  ?></td>
aca4ed9b   Alexandre   Version: 2.5.4.0
38
                <td class="smallText"><?= h($suivi->statut) ?></td>
64fba1a2   Alexandre   Base du projet : ...
39
                
0ea7290f   Alexandre   Version: 2.5.4.2
40

6c4edfa3   Alexandre   First Commit LabI...
41
42
43
44
            </tr>
            <?php endforeach; ?>
        </tbody>
    </table>
64fba1a2   Alexandre   Base du projet : ...
45
    
4260780b   Alexandre   Migration vue, co...
46
    <p><?= $this->Paginator->counter(['format' => 'Page {{page}} sur {{pages}}']) ?></p>
64fba1a2   Alexandre   Base du projet : ...
47
48
49
50
51
    
    <div class="paging">
            <?= $this->Paginator->prev('< ' . __(''), ['class' => 'prev disabled']) ?>
            <?= $this->Paginator->numbers(['separator' => '']) ?>
            <?= $this->Paginator->next(__('') . ' >', ['class' => 'next disabled']) ?>
6c4edfa3   Alexandre   First Commit LabI...
52
    </div>
64fba1a2   Alexandre   Base du projet : ...
53
    
6c4edfa3   Alexandre   First Commit LabI...
54
</div>
4260780b   Alexandre   Migration vue, co...
55
56
57

    	<div class="actions">
			<?php echo $this->element('menu') ?>
4260780b   Alexandre   Migration vue, co...
58
		</div>