File size: 1,932 Bytes
956a06f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="utf-8">
<title>Reporte de Evaluación - {{titulo}}</title>
<style>
  body { font-family: Arial, sans-serif; margin: 24px; }
  h1 { font-size: 24px; margin-bottom: 4px; }
  h2 { margin-top: 24px; }
  table { border-collapse: collapse; width: 100%; margin-top: 12px; }
  th, td { border: 1px solid #ccc; padding: 8px; vertical-align: top; }
  th { background: #f5f5f5; text-align: left; }
  .meta td { border: none; padding: 4px 0; }
  .badge { display: inline-block; padding: 2px 8px; border-radius: 8px; background: #efefef; }
  .resumen { background: #f9f9f9; padding: 12px; border: 1px solid #eee; }
  .foot { color: #777; font-size: 12px; margin-top: 24px; }
</style>
</head>
<body>
  <h1>Reporte de Evaluación de Tecnologías</h1>
  <div class="meta">
    <table>
      <tr><td><strong>Título:</strong></td><td>{{titulo}}</td></tr>
      <tr><td><strong>Responsable:</strong></td><td>{{responsable}}</td></tr>
      <tr><td><strong>Facultad:</strong></td><td>{{facultad}}</td></tr>
      <tr><td><strong>Fecha:</strong></td><td>{{fecha}}</td></tr>
      <tr><td><strong>Descripción breve:</strong></td><td>{{descripcion}}</td></tr>
    </table>
  </div>

  <h2>Criterios y resultados</h2>
  <table>
    <thead>
      <tr>
        <th>Criterio</th>
        <th>Peso</th>
        <th>Opción seleccionada</th>
        <th>Puntaje</th>
        <th>Puntaje ponderado</th>
        <th>Evidencia / Comentarios</th>
      </tr>
    </thead>
    <tbody>
      {{filas}}
    </tbody>
    <tfoot>
      <tr>
        <th colspan="4" style="text-align:right;">Total ponderado</th>
        <th>{{total}}</th>
        <th></th>
      </tr>
    </tfoot>
  </table>

  <h2>Resumen</h2>
  <div class="resumen">
    {{resumen}}
  </div>

  <div class="foot">
    Generado automáticamente. Archivo fuente: {{archivo_fuente}}. Fecha de generación: {{fecha_gen}}.
  </div>
</body>
</html>