<xsl:template match="ZESPOL">
<div class="zespol">
<xsl:number/>.<xsl:value-of select="NAZWA"/>
<table>
<xsl:attribute name="BORDER">l</xsl:attribute>
<tr>
<th>ID</th><th>NAZWISKO</th><th>ETAT</thXth>PLACA</th>
</tr>
<xsl:apply-templates select="PRACOWNICY"/>
</table>
</div>
</xsl:template>
<xsl:template match="PRACOWNIK">
<tr>
<td><xsl:value-of select="@ID_PRAC"/x/td> <tdXxsl:value-of select="NAZWISKO"/x/td> <tdXxsl: value-of select="ETAT"/x/td> <td><xsl: value-of select="PLACA"/x/td>
</tr>
</xsl:template>
<xsl:template match="ZESPOL">
<div class="zespol">
<xsl:number/>.<xsl:value-of select="NAZWA"/>
<xsl:choose>
<xsl:when test="PRACOWNICY">
<table>
<xsl:attribute name="BORDER">l</xsl:attribute>
<tr>
<th>ID</th><th>NAZWISK0</th><th>ETAT</thXth>PLACA</th>
</tr>
<xsl:apply-templates select="PRACOWNICY"/>
</table>
</xsl:when>
<xsl:otherwise>
<br/Xem>Brak pracowników</em>
</xsl:otherwise>
</xsl:choose>
</div>
</xsl:template>