<?xml version="1.0" encoding="windows-1252" ?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  <!-- Root template -->
  <xsl:template match="//rowset">
    <html>
      <body>
        <table border="0" cellpadding="2" cellspacing="0" width="100%">
          <tr>
            <th>Id</th>
            <th>Dep Name</th>
            <th>Manager</th>
          </tr>
          <xsl:apply-templates select="row"/>
        </table>
      </body>
    </html>
  </xsl:template>

  <xsl:template match="row">
    <tr>
      <td><xsl:value-of select="department_id"/></td>
      <td><xsl:value-of select="department_name"/></td>
      <td><xsl:value-of select="last_name"/></td>
    </tr>
  </xsl:template>
</xsl:stylesheet>
