Merci de l'info pas grave pour l'oubli.
J'ai essayé mais je ne dois pas le faire juste... (pourtant j'ai fait un copier coller de l'instruction...)
voilà le code de la ligne 34 à 78
if ( count( $row->offers ) ) { ?>
<table width="100%" class="contentpaneopen">
<tr>
<td class="contentheading"><?php echo htmlspecialchars( $row->category->name ); ?></td>
</tr>
<tr>
<td>
<table width="100%" cellpadding="0" cellspacing="0">
<tr>
<td class="sectiontableheader" width="35%"><?php echo _NEORECRUIT_OFFERS; ?></td>
<td class="sectiontableheader" width="25%" nowrap="nowrap"><?php echo _NEORECRUIT_CONTRACT_TYPE; ?></td>
<td class="sectiontableheader" width="25%" nowrap="nowrap"><?php echo _NEORECRUIT_NB_OPENINGS; ?></td>
<td class="sectiontableheader" width="15%" nowrap="nowrap"><?php echo _NEORECRUIT_CREATED; ?></td>
</tr>
<?php $i=0;
foreach( $row->offers as $offer ) { ?>
<tr class="<?php echo ($i%2) ? "sectiontableentry2" : "sectiontableentry1"; ?>">
<?php $link = 'index.php?option='.$option.'&task=offer_view&id='.$offer->id.'&Itemid='.$Itemid; ?>
<td align="left">
<a href="<?php echo sefRelToAbs( $link ); ?>">
<?php echo htmlspecialchars( $offer->title ); ?>
</a>
</td>
<td align="left">
<?php echo htmlspecialchars( $offer->type ); ?></td>
<td align="left">
<?php if ( intval( $offer->nbopenings ) > 0 ) {
echo htmlspecialchars( $offer->nbopenings." "._NEORECRUIT_OPENINGS );
} ?>
</td>
<td align="left"><?php echo htmlspecialchars( affichedate( $offer->created_datetime ) ); ?></td>
</tr>
<?php
$i++;
}
?>
</table>
</td>
</tr>
</table>
<br>
<?php
}
?>



