|
|
|
@ -9,15 +9,16 @@ |
|
|
|
|
<xsl:variable name="exec" select="@exec" /> |
|
|
|
|
<xsl:for-each select="csc:position-list('')/position[@exec=$exec]"> |
|
|
|
|
<xsl:sort select="@order" order="ascending" /> |
|
|
|
|
<p> |
|
|
|
|
<div class="position"> |
|
|
|
|
<a href="mailto:{@position}@csclub.uwaterloo.ca"><xsl:value-of select="@name" /></a> |
|
|
|
|
</div> |
|
|
|
|
<xsl:if test="not(holder)">Vacant</xsl:if> |
|
|
|
|
<xsl:for-each select="holder"> |
|
|
|
|
<xsl:value-of select="@name" /><br /> |
|
|
|
|
</xsl:for-each> |
|
|
|
|
</p> |
|
|
|
|
<xsl:if test="holder"> |
|
|
|
|
<p> |
|
|
|
|
<div class="position"> |
|
|
|
|
<a href="mailto:{@position}@csclub.uwaterloo.ca"><xsl:value-of select="@name" /></a> |
|
|
|
|
</div> |
|
|
|
|
<xsl:for-each select="holder"> |
|
|
|
|
<xsl:value-of select="@name" /><br /> |
|
|
|
|
</xsl:for-each> |
|
|
|
|
</p> |
|
|
|
|
</xsl:if> |
|
|
|
|
</xsl:for-each> |
|
|
|
|
</xsl:template> |
|
|
|
|
|
|
|
|
|