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