horario_grupo.tpl.html 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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="bloque clase dia{ID_DIA}" rowspan="{DURACION_SIZE}">
  16. <div 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. <p class="salon">Salón: {SALON}</p>
  20. <div class="profesor d-flex flex-column justify-content-start align-items-start"><ul><!-- BEGIN: profesor -->{PROFESOR}<!-- END: profesor --></ul></div>
  21. </div>
  22. </td><!-- END: td_horario -->
  23. <!-- BEGIN: td_vacio --><td class="dia{ID_DIA}"></td><!-- END: td_vacio -->
  24. <!-- END: td -->
  25. </tr><!-- END: hora_row -->
  26. </tbody>
  27. </table>
  28. <!-- BEGIN: submaterias_block -->
  29. <!-- BEGIN: materia --><h4 class="text-center mt-3">{MATERIA}</h4><!-- END: materia -->
  30. <table class="table tabla-submaterias table-striped table-responsive w-auto" cellpadding="0" cellspacing="0" align="center">
  31. <thead>
  32. <tr>
  33. <th>SUBMATERIA</th>
  34. <th>DÍA</th>
  35. <th>SALÓN</th>
  36. <th>PROFESOR</th>
  37. </tr>
  38. </thead>
  39. <!-- BEGIN: row -->
  40. <tr>
  41. <!-- BEGIN: submateria -->
  42. <td>{SUBMATERIA}</td>
  43. <td class="text-center">{DIA}</td>
  44. <td class="text-center">{SALON_SUB}</td>
  45. <td>
  46. <ul>
  47. {PROFESOR_SUB}
  48. </ul>
  49. </td><!-- END: submateria -->
  50. </tr><!-- END: row -->
  51. </table><!-- END: submaterias_block -->
  52. <!-- END: main -->