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 28 29 30 31 32 33
| <xsl:template match="docs">
<html>
<body>
<table align="center" width="100%">
<tr>
<th align="center" class="TabColumn">Nr</th>
<th align="center" class="TabColumn">Date enreg</th>
<th align="center" class="TabColumn">Status</th>
<th align="center" class="TabColumn">Doc Type</th>
</tr>
<xsl:apply-templates select="//doc"/>
</table>
</body>
</html>
</xsl:template>
<xsl:template match="//doc">
<xsl:if test="$param1 <= @">
<tr>
<td class="TabLigne">
<xsl:value-of select="@BOIDPS"/>
</td>
<td class="TabLigne">
<xsl:value-of select="@BOInDatePS"/>
</td>
<td class="TabLigne">
<xsl:value-of select="@WFStatus"/>
</td>
<td class="TabLigne">
<xsl:value-of select="@DocType"/>
</td>
</tr>
</xsl:if>
</xsl:template> |