<xsl:template match="ce:Response/ce:Status">
<div class="container p-3 mb-3 mt-6 pt-6">
<div class="row bg-secondary rounded shadow text-white align-items-center">
<div class="col-2">
<xsl:value-of select="@code"/>
</div>
<div class="col-10">
<xsl:choose>
<xsl:when test="@text">
<xsl:value-of select="@text"/>
</xsl:when>
<xsl:otherwise>
<xsl:call-template name="getLabel">
<xsl:with-param name="aList" select="'technical_status_list_type'"/>
<xsl:with-param name="aVal" select="@code"/>
</xsl:call-template>
</xsl:otherwise>
</xsl:choose>
</div>
</div>
<!-- <xsl:apply-templates mode="mdRow" select="ce:Details"/> -->
</div>
</xsl:template> |