12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <!-- BEGIN: main -->
- <table class="table horario w-100" cellpadding="0" cellspacing="0">
- <thead class="">
- <tr>
- <th class="dia0">Hora</th>
- <!-- BEGIN: header --><th class="dia{ID_DIA}">{DIA}</th><!-- END: header -->
- </tr>
- </thead>
- <tbody>
- <!-- BEGIN: hora_row -->
- <tr>
- <!-- BEGIN: hora --><td class="horaGral dia0" rowspan="{FRACCIONES}">{HORA}:00</td><!-- END: hora -->
- <!-- BEGIN: td -->
- <!-- BEGIN: td_horario -->
- <td class="bloque clase dia{ID_DIA}" rowspan="{DURACION_SIZE}">
- <div style="height: {ALTO_DIV}px">
- <!-- BEGIN: hora --><p class="hora">{HORA_I} - {HORA_F}</p><!-- END: hora -->
- <!-- BEGIN: texto --><p class="materia">{MATERIA}</p><!-- END: texto -->
- <p class="salon">Salón: {SALON}</p>
- <div class="profesor d-flex flex-column justify-content-start align-items-start"><ul><!-- BEGIN: profesor -->{PROFESOR}<!-- END: profesor --></ul></div>
- </div>
- </td><!-- END: td_horario -->
- <!-- BEGIN: td_vacio --><td class="dia{ID_DIA}"></td><!-- END: td_vacio -->
- <!-- END: td -->
- </tr><!-- END: hora_row -->
- </tbody>
- </table>
- <!-- BEGIN: submaterias_block -->
- <!-- BEGIN: materia --><h4 class="text-center mt-3">{MATERIA}</h4><!-- END: materia -->
- <table class="table tabla-submaterias table-striped table-responsive w-auto" cellpadding="0" cellspacing="0" align="center">
- <thead>
- <tr>
- <th>SUBMATERIA</th>
- <th>DÍA</th>
- <th>SALÓN</th>
- <th>PROFESOR</th>
- </tr>
- </thead>
- <!-- BEGIN: row -->
- <tr>
- <!-- BEGIN: submateria -->
- <td>{SUBMATERIA}</td>
- <td class="text-center">{DIA}</td>
- <td class="text-center">{SALON_SUB}</td>
- <td>
- <ul>
- {PROFESOR_SUB}
- </ul>
- </td><!-- END: submateria -->
- </tr><!-- END: row -->
- </table><!-- END: submaterias_block -->
- <!-- END: main -->
|