1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
<xsl:choose>
<xsl:when test="contains(edition,'2006')">
récent
</xsl:when>
<xsl:when test="contains(edition,'2000')">
moyen
</xsl:when>
<xsl:when test="contains(edition,'2001')">
moyen
</xsl:when>
<xsl:when test="contains(edition,'2002')">
moyen
</xsl:when>
<xsl:when test="contains(edition,'2003')">
moyen
</xsl:when>
<xsl:when test="contains(edition,'2004')">
moyen
</xsl:when>
<xsl:when test="contains(edition,'2005')">
moyen
</xsl:when>
<xsl:otherwise >
vieu
</xsl:otherwise>
</xsl:choose> |
Partager