Прошу прощения, нужна консультация.
Есть следующий код:
"<xsl:template match="shop_delivery">
<tr class="click">
<td>
<label>
<input type="radio" value="{shop_delivery_condition/@id}" name="shop_delivery_condition_id">
<xsl:if test="position() = 1">
<xsl:attribute name="checked">checked</xsl:attribute>
</xsl:if>
</input><xsl:text> </xsl:text><span class="caption"><xsl:value-of select="name"/></span>
</label>
</td>
<td><p class="price"><xsl:value-of select="format-number(shop_delivery_condition/price, '### ##0,0', 'my'

"/><xsl:text> </xsl:text><img src="/images/lampada/rubble-small.png" alt="" /></p></td>
<td><p class="price"><xsl:value-of select="format-number(/shop/total_amount + shop_delivery_condition/price, '### ##0,0', 'my'

"/><xsl:text> </xsl:text><img src="/images/lampada/rubble-small.png" alt="" /></p></td>
</tr>
<tr>
<td><xsl:choose>
<xsl:when test="normalize-space(shop_delivery_condition/name) !=''">
<xsl:value-of disable-output-escaping="yes" select="concat(shop_delivery_condition/name,''

"/>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="shop_delivery_condition/name" />
</xsl:otherwise>
</xsl:choose> </td>
<td colspan="2">
<xsl:choose>
<xsl:when test="normalize-space(shop_delivery_condition/name) !=''">
<xsl:value-of disable-output-escaping="yes" select="concat(description,' (',shop_delivery_condition/description,'

'

"/>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="shop_delivery_condition/name" />
</xsl:otherwise>
</xsl:choose>
</td></tr>
</xsl:template>"
Есть необходимость вывести все _подходящие_ условия доставки, но выводится только одно. Как исправить?