Don't output vacant positions

This commit is contained in:
David Bartley 2007-11-21 18:35:32 -05:00
parent d5a51db097
commit 1333ff9ffd
1 changed files with 10 additions and 9 deletions

View File

@ -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>