Re-uploaded the project in only one repository

This commit is contained in:
Daniel Cortes
2017-07-31 13:07:07 -04:00
commit e5853c8de6
1098 changed files with 220719 additions and 0 deletions

View File

@@ -0,0 +1,36 @@
<?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>