37 lines
1.3 KiB
XML
37 lines
1.3 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
|
|
|
|
<xsl:template match="/">
|
|
<html>
|
|
|
|
<body>
|
|
<h2>Estudiantes con baja asistencia</h2>
|
|
<table border="1">
|
|
<tr bgcolor="#9acd32">
|
|
<th>Nombre</th>
|
|
<th>Rut</th>
|
|
<th>Porcentaje asistencia</th>
|
|
</tr>
|
|
<tr>
|
|
<xsl:for-each select="logica.reportes.ReporteAsistenciaBajo/map/Atribute">
|
|
<tr>
|
|
<td>
|
|
<xsl:value-of select="Estudiante/nombre"/>
|
|
</td>
|
|
<td>
|
|
<xsl:value-of select="Estudiante/rut"/>
|
|
</td>
|
|
<td>
|
|
<xsl:value-of select="PorcentajeAsistencia"/>
|
|
</td>
|
|
</tr>
|
|
</xsl:for-each>
|
|
</tr>
|
|
</table>
|
|
</body>
|
|
|
|
</html>
|
|
</xsl:template>
|
|
|
|
</xsl:stylesheet>
|