horario_profesor.tpl.html 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. <!-- BEGIN: main -->
  2. <table class="table horario w-100" cellpadding="0" cellspacing="0">
  3. <thead class="">
  4. <tr>
  5. <th class="dia0">Hora</th>
  6. <!-- BEGIN: header --><th class="dia{ID_DIA}">{DIA}</th><!-- END: header -->
  7. </tr>
  8. </thead>
  9. <tbody>
  10. <!-- BEGIN: hora_row -->
  11. <tr>
  12. <!-- BEGIN: hora --><td class="horaGral dia0" rowspan="{FRACCIONES}">{HORA}:00</td><!-- END: hora -->
  13. <!-- BEGIN: td -->
  14. <!-- BEGIN: td_horario -->
  15. <td class="clase dia{ID_DIA}" rowspan="{DURACION_SIZE}">
  16. <div class="bloque clase" style="height: {ALTO_DIV}px">
  17. <!-- BEGIN: hora --><p class="hora">{HORA_I} - {HORA_F}</p><!-- END: hora -->
  18. <!-- BEGIN: texto --><p class="materia">{MATERIA}</p><!-- END: texto -->
  19. <!-- BEGIN: grupo --><p class="grupo">Grupo: {GRUPO}</p><!-- END: grupo -->
  20. <p class="salon">Salón: {SALON}</p>
  21. </td><!-- END: td_horario -->
  22. <!-- BEGIN: td_bloque -->
  23. <td class="bloque {BLOQUE} dia{ID_DIA}" rowspan="{DURACION_SIZE}">
  24. <div class="{CLASE}" style="height: {ALTO_DIV}px">
  25. <!-- BEGIN: hora --><p class="hora">{HORA_I} - {HORA_F}</p><!-- END: hora -->
  26. </td><!-- END: td_bloque -->
  27. <!-- BEGIN: td_vacio --><td class="dia{ID_DIA}"></td><!-- END: td_vacio -->
  28. <!-- END: td -->
  29. </tr><!-- END: hora_row -->
  30. </tbody>
  31. </table>
  32. <!-- BEGIN: submaterias_block -->
  33. <!-- BEGIN: materia --><h4 class="text-center mt-3">{MATERIA}</h4><!-- END: materia -->
  34. <table class="table tabla-submaterias table-striped table-responsive w-auto" cellpadding="0" cellspacing="0" align="center">
  35. <thead>
  36. <tr>
  37. <th>SUBMATERIA</th>
  38. <th>DÍA</th>
  39. <th>SALÓN</th>
  40. <th>PROFESOR</th>
  41. </tr>
  42. </thead>
  43. <!-- BEGIN: row -->
  44. <tr>
  45. <!-- BEGIN: submateria -->
  46. <td>{SUBMATERIA}</td>
  47. <td class="text-center">{DIA}</td>
  48. <td class="text-center">{SALON_SUB}</td>
  49. <td>
  50. <ul>
  51. {PROFESOR_SUB}
  52. </ul>
  53. </td><!-- END: submateria -->
  54. </tr><!-- END: row -->
  55. </table><!-- END: submaterias_block -->
  56. <div class="d-flex flex-row justify-content-around align-items-center w-100">
  57. <div class="d-inline-flex flex-row justify-content-start align-items-center">
  58. <div class="cuadro atencion mr-2"></div><label>Atención al área</label>
  59. </div>
  60. <div class="d-inline-flex flex-row justify-content-start align-items-center">
  61. <div class="cuadro gestion mr-2"></div><label>Gestión</label>
  62. </div>
  63. <div class="d-inline-flex flex-row justify-content-start align-items-center">
  64. <div class="cuadro clase mr-2"></div><label>Docencia</label>
  65. </div>
  66. </div>
  67. <!-- END: main -->