Guest User

Untitled

a guest
May 2nd, 2016
157
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.94 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8" />
  5. <title></title>
  6. <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css">
  7. <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap-theme.min.css">
  8. <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js"></script>
  9. </head>
  10. <body>
  11. <div class="container">
  12. <h1 style="text-align:center;">Лабораторная работа №1</h1>
  13.  
  14. <h2>Успеваемость студентов гр. 723</h2>
  15. <table class="table table-striped">
  16. <thead>
  17. <tr>
  18. <th>#</th>
  19. <th>ФИО</th>
  20. <th>ТиМП</th>
  21. <th>ЭиС</th>
  22. <th>Философия</th>
  23. <th>Иностранный язык</th>
  24. <th>Физическая культура</th>
  25. <th>Средний балл</th>
  26. </tr>
  27. </thead>
  28. <tbody>
  29. {% for student in students_statistics %}
  30. <tr>
  31. <th scope="row">{{student.id}}</th>
  32. <td>{{student.fio}}</td>
  33. <td>{{student.timp}}</td>
  34. <td>{{student.eis}}</td>
  35. <td>{{student.philosophy}}</td>
  36. <td>{{student.english}}</td>
  37. <td>{{student.sport}}</td>
  38. <td>{{student.average}}</td>
  39. </tr>
  40. {% endfor %}
  41. </tbody>
  42. </table>
  43. <h4>Отличники:{{excellent_students}}</h4>
  44. <h4>Отчислить:{{bad_students}}</h4>
  45. </div>
  46. </body>
  47. </html>
Add Comment
Please, Sign In to add comment