Currently I have this code which calls the "user" template for each user node.
<xsl:for-each select="./user|./UnformatedUser">
<xsl:apply-templates select=".">
<xsl:with-param name="span"/>
</xsl:apply-templates>
</xsl:for-each>
However, I now want to use a template named "fulluser" for all users. I've tried adding name="fulluser"
to the <xsl:apply-templates>
tag but it didn't work.