Line 19... |
Line 19... |
19 |
<th>Durée financée</th>
|
19 |
<th>Durée financée</th>
|
20 |
<th>Avancement (%)</th>
|
20 |
<th>Avancement (%)</th>
|
21 |
</tr>
|
21 |
</tr>
|
22 |
</thead>
|
22 |
</thead>
|
23 |
<tbody>
|
23 |
<tbody>
|
24 |
<?foreach ($preferences as $categorie => $projets):?>
|
24 |
<?php foreach ($preferences as $categorie => $projets):?>
|
25 |
<tr class="categories"><th colspan="8"><?=$categorie;?></th></tr>
|
25 |
<tr class="categories"><th colspan="8"><?=$categorie;?></th></tr>
|
26 |
<?php $ligne = "impair"; ?>
|
26 |
<?php $ligne = "impair"; ?>
|
27 |
<?foreach ($projets as $projet):?>
|
27 |
<?php foreach ($projets as $projet):?>
|
28 |
<tr class="<?=$ligne ; $ligne = ($ligne == "impair") ? "pair" : "impair" ;?>">
|
28 |
<tr class="<?=$ligne ; $ligne = ($ligne == "impair") ? "pair" : "impair" ;?>">
|
29 |
<td class="check"><input id="pr:<?=$projet['id'];?>" name="pr:<?=$projet['id'];?>" value="<?=$projet['valeur'];?>" type="checkbox" <?=$projet['coche']?'checked="checked"':'';?>/></td>
|
29 |
<td class="check"><input id="pr:<?=$projet['id'];?>" name="pr:<?=$projet['id'];?>" value="<?=$projet['valeur'];?>" type="checkbox" <?=$projet['coche']?'checked="checked"':'';?>/></td>
|
30 |
<td class="pr_no"><?=$projet['no'];?></td>
|
30 |
<td class="pr_no"><?=$projet['no'];?></td>
|
31 |
<td class="pr_de"><?=$projet['de'];?></td>
|
31 |
<td class="pr_de"><?=$projet['de'];?></td>
|
32 |
<td class="pr_dade"><?=($projet['dade'] != '0000-00-00') ? $projet['dade'] : ' ' ;?></td>
|
32 |
<td class="pr_dade"><?=($projet['dade'] != '0000-00-00') ? $projet['dade'] : ' ' ;?></td>
|
Line 56... |
Line 56... |
56 |
</tbody>
|
56 |
</tbody>
|
57 |
</table>
|
57 |
</table>
|
58 |
<input class="btn_large" id="btn_valider_editer" name="btn_valider_editer" value="<?=$i18n_general_valider;?>" type="submit" />
|
58 |
<input class="btn_large" id="btn_valider_editer" name="btn_valider_editer" value="<?=$i18n_general_valider;?>" type="submit" />
|
59 |
</form>
|
59 |
</form>
|
60 |
</div>
|
60 |
</div>
|
61 |
<?php endif; ?>
|
- |
|
62 |
|
61 |
<?php endif; ?>
|
- |
|
62 |
|