Files
colegio-en-java/colegio_api/files/xslt/toWordAsistenciaBaja.xsl
2017-07-31 13:07:07 -04:00

31 lines
1.2 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.ReporteAsistenciaBajo/map/Atribute">
<w:p>
<w:r>
<w:t>Estudiante:
<xsl:value-of select="Estudiante/nombre"/>:<xsl:value-of select="Estudiante/rut"/>
</w:t>
</w:r>
</w:p>
<w:p>
<w:r>
<w:t>Asistencia:
<xsl:value-of select="PorcentajeAsistencia"/>%
</w:t>
</w:r>
</w:p>
<w:p>
<w:r>
<w:t></w:t>
</w:r>
</w:p>
</xsl:for-each>
</w:body>
</w:wordDocument>
</xsl:template>
</xsl:stylesheet>