view.ctp 2.08 KB

<div class="unites view">
    <h2>Détail unite</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 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));
    	?>


    </table>
    
   <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;">

        <?php if (!empty($suivis)) { ?>
        <table> 
		<tr> 
			<th style="width:50px;"><?= __('Intitulé') ?></th>
			<th><?= __('Numero') ?></th>
		</tr> 	
		<?php foreach ($suivis as $suivi): ?>
		<tr>
		
		   
            <td class="actions">
                <?= $this->Html->link(__('<i class="icon-search"></i>'), ['controller' => 'Suivis', 'action' => 'view', $suivi->id], ['escape' => false, 'style' => 'margin:0']) ?>
			</td>
			<td><?= $this->Html->link(h($suivi->id), ['controller' => 'Suivis', 'action' => 'view', h($suivi->id)]); ?></td>
       </tr>
		<?php endforeach; ?> 
		</table> 
        <?php }else { echo 'Aucun suivi lié à cette unité.'; } ?>
    </div>
    
    
</div>


    	<div class="actions">
			<?php echo $this->element('menu') ?>
			<?php echo $this->element('menu_view', 
			[ 'pluralHumanName' => 'Unites',
			'singularHumanName' => 'Unite',
			'lien' => $unite->id]) ?>
		</div>