У меня есть блочный код в XSLT, например:
<xsl:template match="zootier">
<xsl:choose>
<xsl:when test="not(@flugfaeghig) or (@flugfaeghig='true')">
<xsl:value-of select="name/text()"/>
(<xsl:value-of select="@id"/>)
</xsl:when>
<xsl:otherwise>
<xsl:if test="@flugfaeghig='false'">
<xsl:value-of select="name/text()"/>
(<xsl:value-of select="@id"/>)
</xsl:if>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
Я хочу показать результат <xsl:when>
в одной части моей страницы и <xsl:otherwise>
в другой части. например, я хочу показать результат <xsl:when>
во A и результат <xsl:otherwise>
перед B
<xsl:template match="zoo">
<html>
<title>
<xsl:text>ZOO</xsl:text>
</title>
<head>
<h1>Behausung im Zoo "Zoogarten"</h1>
</head>
<table>
<tr>
<td>
<xsl:text>A </xsl:text>
</td>
</tr>
<tr>
<td>
<xsl:text>B</xsl:text>
</td>
</tr>
<xsl:apply-templates select="zootier" />
</table>
</html>
Подскажите, пожалуйста, как мне это сделать?