説明なし

dashboard.html 1.1KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. {% extends 'ElVerdaderoHeader.html' %}
  2. {% block head %}
  3. {{MaestroId}}
  4. {% endblock %}
  5. {% block css %}
  6. <link rel='stylesheet' href ='../static/css/estilo.css'>
  7. {% endblock %}
  8. {% block body %}
  9. <h1 class = 'text-center text-white bg-dark'>Cursos</h1>
  10. <div class ='row'>
  11. </div>
  12. <div class=" col">
  13. <table class ='table table-hover'>
  14. <thead>
  15. <th>Código</th>
  16. <th>Título</th>
  17. <th>Horario</th>
  18. </thead>
  19. <tbody>
  20. {% for cursos in los_cursos %}
  21. <tr>
  22. <td>{{cursos.codigo}}</td>
  23. <td>{{cursos.titulo}}</td>
  24. <td>{{cursos.horario}}</td>
  25. <td><a href="/Maestro/{{MaestroId}}/{{cursos.oferta_id}}/addNota" class="boton task2">Añadir Notas</a></td>
  26. <td><a href="/Maestro/{{MaestroId}}/{{cursos.oferta_id}}/addAsistencia/{{fecha}}" class="boton task2">Asistencia</a></td>
  27. <td><a href="/Maestro/{{MaestroId}}/{{cursos.oferta_id}}/verNotas" class="boton task2">Editar Notas</a></td>
  28. </tr><br>
  29. {% endfor %}
  30. </tbody>
  31. </table>
  32. </div>
  33. </div>
  34. {% endblock %}