1234567891011121314151617181920212223242526272829303132333435363738 |
- {% extends 'ElVerdaderoHeader.html' %}
- {% block head %}
- {{MaestroId}}
- {% endblock %}
-
- {% block css %}
- <link rel='stylesheet' href ='../static/css/estilo.css'>
- {% endblock %}
-
- {% block body %}
- <h1 class = 'text-center text-white bg-dark'>Cursos</h1>
- <div class ='row'>
-
- </div>
- <div class=" col">
- <table class ='table table-hover'>
- <thead>
- <th>Código</th>
- <th>Título</th>
- <th>Horario</th>
- </thead>
- <tbody>
- {% for cursos in los_cursos %}
- <tr>
- <td>{{cursos.codigo}}</td>
- <td>{{cursos.titulo}}</td>
- <td>{{cursos.horario}}</td>
- <td><a href="/Maestro/{{MaestroId}}/{{cursos.oferta_id}}/addNota" class="boton task2">Añadir Notas</a></td>
- <td><a href="/Maestro/{{MaestroId}}/{{cursos.oferta_id}}/addAsistencia/{{fecha}}" class="boton task2">Asistencia</a></td>
- <td><a href="/Maestro/{{MaestroId}}/{{cursos.oferta_id}}/verNotas" class="boton task2">Editar Notas</a></td>
- </tr><br>
- {% endfor %}
- </tbody>
- </table>
- </div>
- </div>
-
- {% endblock %}
|