<?php // Variables passées par le contrôleur $entities = $entities; // Nombre total d'entités $nbUsers = $this->Paginator->param('count'); ?> <div class="users index"> <?php echo '<h2><i class="icon-list"></i> Liste des Responsables et leur appartenance ('.$nbUsers.')</h2>'; ?> <table cellpadding="0" cellspacing="0"> <thead> <tr> <th class="actions"><?= __('') ?></th> <th><?= $this->Paginator->sort('nom') ?></th> <th><?= $this->Paginator->sort('email') ?></th> <!-- <th><= $this->Paginator->sort('nom', ['model' => 'GroupesThematiques']);?></th> <th><= $this->Paginator->sort('groupes_thematique->nom', 'Groupe Thématique');?></th> <th><= $this->Paginator->sort('groupes_thematique.nom', 'Groupe Thématique');?></th> <th><= $this->Paginator->sort('groupes_thematique_id', 'Groupe Thématique');?></th> --> <th><?= $this->Paginator->sort('GroupesThematiques.nom', 'Groupe Thématique');?></th> <th><?= $this->Paginator->sort('GroupesMetiers.nom', 'Groupe Métier') ?></th> <th><?= $this->Paginator->sort('SurCategories.nom', 'Domaine') ?></th> <th class="actions"><?= __('') ?></th> </tr> </thead> <tbody> <?php foreach ($entities as $user): //debug($user); //debug($user->groupes_metier_id); //debug($user->groupes_metier); //debug($user->groupes_metier->nom); //debug($user->groupes_thematique->nom); ?> <tr> <td class="actions" style="padding: 6px 0; text-align: left;"> <?php if($role == 'Super Administrateur') { ?> <?= $this->Html->link(__('<i class="icon-pencil"></i>'), ['action' => 'edit', $user->id], ['title' => 'Editer', 'style' => 'margin: 0 2px', 'escape' => false ]) ?> <?= $this->Form->postLink(__('<i class="icon-trash"></i>'), ['action' => 'delete', $user->id], ['title' => 'Supprimer', 'style' => 'margin: 0 2px', 'escape' => false, 'confirm' => __('Êtes-vous sur de vouloir supprimer l\'utilisateur {0} ?', $user->nom)]) ?> <?php } ?> </td> <td class="smallText"><?= $this->Html->link($user->nom, ['action' => 'view', $user->id]) ?></td> <td class="smallText"><?= h($user->email) ?></td> <td class="smallText"><?= $user->has('groupes_thematique_id') ? h($user->groupes_thematique->nom) : '' ?></td> <td class="smallText"><?= $user->has('groupes_metier_id') ? h($user->groupes_metier->nom) : '' ?></td> <td class="smallText"><?= $user->has('sur_categorie_id') ? h($user->sur_category->nom) : '' ?></td> </tr> <?php endforeach; ?> </tbody> </table> <!-- PAGINATION --> <?php //echo $this->element('pagination'); echo $this->element('pagination_with_first_and_last'); ?> <!-- OLD buggy way : <p><= $this->Paginator->counter(['format' => 'Page {{page}} sur {{pages}}']) ?></p> <div class="paging"> <= $this->Paginator->prev('< ' . __(''), ['class' => 'prev disabled']) ?> <= $this->Paginator->numbers(['separator' => '']) ?> <= $this->Paginator->next(__('') . ' >', ['class' => 'next disabled']) ?> </div> --> </div> <!-- <div class="actions"> <php echo $this->element('menu') ?> <php echo $this->element('menu_index', [ 'pluralHumanName' => 'Utilisateurs', 'singularHumanName' => 'Utilisateur' ])?> </div> -->