Subversion Repositories Applications.gtt

Rev

Rev 73 | Rev 95 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 73 Rev 89
Line 14... Line 14...
14
	<thead>
14
	<thead>
15
	<tr>
15
	<tr>
16
		<th>Projets</th>
16
		<th>Projets</th>
17
<?php foreach ($elements[$s] as $jour) : ?>
17
<?php foreach ($elements[$s] as $jour) : ?>
18
		<th class="<?=$jour['class'];?>">
18
		<th class="<?=$jour['class'];?>">
19
			<? if ($jour['class'] == 'jour_vide') :?>
-
 
20
				<?=$jour['jour_nom'];?> <?=$jour['jour'];?>
19
			<?=$jour['jour_nom'];?> <?=$jour['jour'];?>
21
			<? else :?>
-
 
22
				<a href="<?=$jour['url'];?>"><?=$jour['jour_nom'];?> <?=$jour['jour'];?></a>
-
 
23
			<? endif;?>
-
 
24
		</th>
20
		</th>
25
<?php endforeach; ?>
21
<?php endforeach; ?>
26
	</tr>
22
	</tr>
27
	</thead>
23
	</thead>
28
	<tbody>
24
	<tbody>
Line 45... Line 41...
45
<?php endforeach; ?>
41
<?php endforeach; ?>
46
<? endif;?>
42
<? endif;?>
47
	<tr><td colspan="8" class="categorie">Absences</td></tr>
43
	<tr><td colspan="8" class="categorie">Absences</td></tr>
48
<?php foreach ($ab as $ab_id => $tab_ab_jours) : ?>
44
<?php foreach ($ab as $ab_id => $tab_ab_jours) : ?>
49
	<tr><td class="absence_titre"><?=$ab_libelle[$ab_id];?></td>
45
	<tr><td class="absence_titre"><?=$ab_libelle[$ab_id];?></td>
50
	<?php foreach ($tab_ab_jours as $num => $ab_duree) : ?>
46
	<?php foreach ($elements[$s] as $num => $jour) : ?>
51
		<td class="ab"><input id="ab:<?=$ab_id;?>:<?=$num;?>" name="ab:<?=$ab_id;?>:<?=$num;?>" value="<?=$ab_duree;?>" type="text"/></td>
47
		<td class="ab <?=$jour['class'];?>"><input id="ab:<?=$ab_id;?>:<?=$num;?>" name="ab:<?=$ab_id;?>:<?=$num;?>" value="<?=$tab_ab_jours[$num];?>" type="text"/></td>
52
	<?php endforeach; ?>
48
	<?php endforeach; ?>
53
	</tr>
49
	</tr>
54
<?php endforeach; ?>
50
<?php endforeach; ?>
55
	<tr><td class="total_titre">Totaux</td>
51
	<tr><td class="total_titre">Totaux</td>
56
	<?php foreach ($elements[$s] as $num => $jour) : ?>
52
	<?php foreach ($elements[$s] as $num => $jour) : ?>