43 lines
1.5 KiB
XML
43 lines
1.5 KiB
XML
<?xml version="1.0"?>
|
|
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
|
|
<xsl:template match="/">
|
|
<w:wordDocument xmlns:w="http://schemas.microsoft.com/office/word/2003/wordml">
|
|
<w:body>
|
|
<xsl:for-each select="logica.reportes.ReporteNotasProfesor/lista/entry">
|
|
<w:p>
|
|
<w:r>
|
|
<w:t>Estudiante:</w:t>
|
|
</w:r>
|
|
</w:p>
|
|
<w:p>
|
|
<w:r>
|
|
<w:t><xsl:value-of select="Estudiante/nombre"/>/<xsl:value-of select="Estudiante/rut"/>
|
|
</w:t>
|
|
</w:r>
|
|
</w:p>
|
|
<w:p>
|
|
<w:r>
|
|
<w:t>Notas:</w:t>
|
|
</w:r>
|
|
</w:p>
|
|
<xsl:for-each select="list/Nota">
|
|
<w:p>
|
|
<w:r>
|
|
<w:t>
|
|
<xsl:value-of select="valor"/>
|
|
</w:t>
|
|
</w:r>
|
|
</w:p>
|
|
</xsl:for-each>
|
|
<w:p>
|
|
<w:r>
|
|
<w:t>
|
|
</w:t>
|
|
</w:r>
|
|
</w:p>
|
|
</xsl:for-each>
|
|
</w:body>
|
|
</w:wordDocument>
|
|
</xsl:template>
|
|
</xsl:stylesheet>
|