Subversion Repositories Applications.gtt

Rev

Rev 11 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
10 jpm 1
<dl>
2
	<dt>Congés payés restants</dt>
3
	<dd>22 jours</dd>
4
	<dt>Heures supp restantes</dt>
5
	<dd>  2 jours	6heures </dd>
6
</dl>
7
 
8
<div id="calendrier">
9
<p><a href="<?=$url_mois_precedent;?>">Mois précédent</a> - <a href="<?=$url_mois_suivant;?>">Mois suivant</a></p>
10
<p><a href="<?=$url_semaine_precedente;?>">Semaine précédente</a> - <a href="<?=$url_semaine_suivante;?>">Semaine suivante</a></p>
11
<table>
12
	<caption><?=$mois_courant_nom;?></caption>
13
	<thead>
14
	<tr>
15
		<th>Lun</th>
16
		<th>Mar</th>
17
		<th>Mer</th>
18
		<th>Jeu</th>
19
		<th>Ven</th>
20
		<th>Sam</th>
21
		<th>Dim</th>
22
	</tr>
23
	</thead>
24
	<tbody>
25
<?php foreach ($elements as $semaine) : ?>
26
    <tr>
27
   	<?php foreach ($semaine as $jour) : ?>
28
		<td class="<?=$jour['class'];?>">
29
			<? if ($jour['class'] == 'empty') :?>
30
				<?=$jour['jour'];?>
31
			<? else :?>
32
				<a href="index.php?action=<?=GTT_ACTION_GESTION;?>&amp;annee=<?=$jour['annee'];?>&amp;mois=<?=$jour['mois'];?>&amp;jour=<?=$jour['jour'];?>"><?=$jour['jour'];?></a>
33
			<? endif;?>
34
		</td>
35
    <?php endforeach; ?>
36
	</tr>
37
 
38
<?php endforeach; ?>
39
	</tbody>
40
</table>
41
</div>