1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
<li><xsl:choose>
<xsl:when test="Num_Entidades_Base= '0'">
Entidades base: <xsl:value-of select="Num_Entidades_Base"/>
</xsl:when>
<xsl:otherwise>
<form method="post">
<input type="button" value="" onclick="refresh({$increment});" class="buttonImg1"></input>Entidades base: <xsl:value-of select="Num_Entidades_Base"/>
</form>
</xsl:otherwise>
</xsl:choose></li>
<li><xsl:choose>
<xsl:when test="Num_Entidades_Fsicas= '0'">
Entidades físicas: <xsl:value-of select="Num_Entidades_Fsicas"/>
</xsl:when>
<xsl:otherwise>
<form method="post">
<input type="button" value="" onclick="refresh({$increment+1});" class="buttonImg1"></input>Entidades físicas: <xsl:value-of select="Num_Entidades_Fsicas"/>
</form>
</xsl:otherwise>
</xsl:choose></li> |