Line 24... |
Line 24... |
24 |
<?php foreach ($utilisateurs as $utilisateur) : ?>
|
24 |
<?php foreach ($utilisateurs as $utilisateur) : ?>
|
25 |
<td><?=(isset($utilisateur['total_w'])) ? $utilisateur['total_w'] : " ";?></td>
|
25 |
<td><?=(isset($utilisateur['total_w'])) ? $utilisateur['total_w'] : " ";?></td>
|
26 |
<?php endforeach; ?>
|
26 |
<?php endforeach; ?>
|
27 |
<td class="total"><?=$total_projets;?></td>
|
27 |
<td class="total"><?=$total_projets;?></td>
|
28 |
</tr>
|
28 |
</tr>
|
29 |
<?foreach ($categories as $idc => $categorie):?>
|
29 |
<?php foreach ($categories as $idc => $categorie):?>
|
30 |
<tr class="categories">
|
30 |
<tr class="categories">
|
31 |
<th class="categories_titre"><?=$categorie['nom'];?> [<?=$categorie['abreviation'];?>]</th>
|
31 |
<th class="categories_titre"><?=$categorie['nom'];?> [<?=$categorie['abreviation'];?>]</th>
|
32 |
<?php foreach ($utilisateurs as $utilisateur) : ?>
|
32 |
<?php foreach ($utilisateurs as $utilisateur) : ?>
|
33 |
<td class="categories_total"><?=(isset($utilisateur['projets'][$idc]['total'])) ? $utilisateur['projets'][$idc]['total'] : " ";?></td>
|
33 |
<td class="categories_total"><?=(isset($utilisateur['projets'][$idc]['total'])) ? $utilisateur['projets'][$idc]['total'] : " ";?></td>
|
34 |
<?php endforeach; ?>
|
34 |
<?php endforeach; ?>
|
35 |
<td class="total"><?=$categorie['total'];?></td>
|
35 |
<td class="total"><?=$categorie['total'];?></td>
|
36 |
</tr>
|
36 |
</tr>
|
37 |
<?foreach ($categorie['projets'] as $idp => $projet):?>
|
37 |
<?php foreach ($categorie['projets'] as $idp => $projet):?>
|
38 |
<tr class="utilisateur <?=$ligne ; $ligne = ($ligne == "impair") ? "pair" : "impair" ;?>">
|
38 |
<tr class="utilisateur <?=$ligne ; $ligne = ($ligne == "impair") ? "pair" : "impair" ;?>">
|
39 |
<th id="pr:<?=$idp;?>" title="<?=$projet['desc'];?>"><?=$projet['nom'];?></th>
|
39 |
<th id="pr:<?=$idp;?>" title="<?=$projet['desc'];?>"><?=$projet['nom'];?></th>
|
40 |
<?php foreach ($utilisateurs as $utilisateur) : ?>
|
40 |
<?php foreach ($utilisateurs as $utilisateur) : ?>
|
41 |
<td class="projet"><?=(isset($utilisateur['projets'][$idc][$idp])) ? $utilisateur['projets'][$idc][$idp]['duree'] : " ";?></td>
|
41 |
<td class="projet"><?=(isset($utilisateur['projets'][$idc][$idp])) ? $utilisateur['projets'][$idc][$idp]['duree'] : " ";?></td>
|
42 |
<?php endforeach; ?>
|
42 |
<?php endforeach; ?>
|
Line 76... |
Line 76... |
76 |
|
76 |
|
77 |
<?php if (isset($messages)) : ?>
|
77 |
<?php if (isset($messages)) : ?>
|
78 |
<?php foreach ($messages as $message) : ?>
|
78 |
<?php foreach ($messages as $message) : ?>
|
79 |
<p class="information"><?=$message;?></p>
|
79 |
<p class="information"><?=$message;?></p>
|
80 |
<?php endforeach; ?>
|
- |
|
81 |
<?php endif; ?>
|
80 |
<?php endforeach; ?>
|
- |
|
81 |
<?php endif; ?>
|