I have a template that I want to call in a for each loop but am not sure how to do this. Currently I have \[code\]<xsl:for-each select="Dependents"> <xsl:value-of select="."/></xsl:for-each>\[/code\]but I'm not sure this will work.I have a template called 'render-dependents'should I do \[code\]<xsl:for-each select="Dependents"> <xsl:call-template name="render-dependents" select="." /></xsl:for-each>\[/code\]?