Rev 89 | Rev 104 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed
<div id="navigation">
<p>Navigation : <a href="<?=$url_mois_precedent;?>"><<</a> <?=$mois['mois'];?> <?=$mois['annee'];?> <a href="<?=$url_mois_suivant;?>">>></a></p>
</div>
<?php if ($projets || $absences) : ?>
<table id="tab_tps_w_mensuel_salarie" summary="Tableau du temps de travail mensuel par salariƩ.">
<caption>Tableaux global - <?=$mois['mois'];?> <?=$mois['annee'];?></caption>
<thead>
<tr>
<th>Projets</th>
<?php foreach ($utilisateurs as $utilisateur) : ?>
<th>
<?=$utilisateur['prenom_nom']?>
</th>
<?php endforeach; ?>
</tr>
</thead>
<tbody>
<?php $ligne = "impair"; ?>
<?php if ($projets) : ?>
<?foreach ($projets as $categorie => $pr):?>
<tr class="categories">
<td class="categories_titre"><?=$categorie;?></td>
<?php foreach ($utilisateurs as $utilisateur) : ?>
<td class="categories_total"><?=(isset($utilisateur['categorie_totaux'][$categorie])) ? $utilisateur['categorie_totaux'][$categorie] : " ";?></td>
<?php endforeach; ?>
</tr>
<?foreach ($pr as $id => $nom):?>
<tr class="utilisateur <?=$ligne ; $ligne = ($ligne == "impair") ? "pair" : "impair" ;?>">
<td id="pr:<?=$id;?>" class="projet_nom"><?=$nom;?></td>
<?php foreach ($utilisateurs as $utilisateur) : ?>
<td class="projet"><?=(isset($utilisateur['projets'][$categorie][$id])) ? $utilisateur['projets'][$categorie][$id]['duree'] : " ";?></td>
<?php endforeach; ?>
</tr>
<?php endforeach; ?>
<?php endforeach; ?>
<?php endif; ?>
<?php if ($absences) : ?>
<tr class="absences">
<td class="absences_titre">Absences</td>
<?php foreach ($utilisateurs as $utilisateur) : ?>
<td class="absences_total"><?=$utilisateur['ab_total'];?></td>
<?php endforeach; ?>
</tr>
<?php foreach ($absences as $ab_id => $ab_libelle) : ?>
<tr class="utilisateur <?=$ligne ; $ligne = ($ligne == "impair") ? "pair" : "impair" ;?>">
<td id="ab:<?=$ab_id;?>" class="absence_nom"><?=$ab_libelle;?></td>
<?php foreach ($utilisateurs as $utilisateur) : ?>
<td class="absence"><?= (isset($utilisateur['ab'][$ab_id])) ? $utilisateur['ab'][$ab_id] : " ";?></td>
<?php endforeach; ?>
</tr>
<?php endforeach; ?>
<?php endif; ?>
</tbody>
</table>
<?php endif; ?>
<?php if (isset($messages)) : ?>
<?php foreach ($messages as $message) : ?>
<p class="information"><?=$message;?></p>
<?php endforeach; ?>
<?php endif; ?>