Tick -- √
<xsl:template name="Remark">
<xsl:variable name="remark_value">
<xsl:value-of select="//Item/so_terms"></xsl:value-of>
</xsl:variable>
<xsl:choose>
<xsl:when test="string($remark_value) = 'Yes'">
<xsl:text> √ </xsl:text>
</xsl:when>
<xsl:otherwise>
<table class="tick" height="10" width="50">
<tr>
<td>
<xsl:text></xsl:text>
</td>
</tr>
</table>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
<xsl:template name="Remarkfalse">
<xsl:variable name="remark_value">
<xsl:value-of select="//Item/so_terms"></xsl:value-of>
</xsl:variable>
<xsl:choose>
<xsl:when test="string($remark_value) = 'No'">
<xsl:text></xsl:text>
<xsl:text> √ </xsl:text>
</xsl:when>
<xsl:otherwise>
<table class="tick" height="10" width="50">
<tr>
<td>
<xsl:text></xsl:text>
</td>
</tr>
</table>
</xsl:otherwise>
</xsl:choose>
</xsl:template>