Advertisement
Guest User

Untitled

a guest
Feb 22nd, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.21 KB | None | 0 0
  1. {% import "bootstrap/utils.html" as utils %}
  2. {% extends "template.html" %}
  3. {% block title %}Courses{% endblock %}
  4. {% block body %}
  5. <div class="content-section">
  6. <div class="outer">
  7. <div class="middle">
  8. <div class="inner">
  9. <br/>
  10. {{ utils.flashed_messages() }}
  11. <br/>
  12. <h1>Courses</h1>
  13. {% if courses %}
  14. <hr class="intro-divider">
  15. <div class="center">
  16. <table class="table table-striped table-bordered">
  17. <thead>
  18. <tr>
  19. <th width="15%"> Name </th>
  20. <th width="40%"> Description </th>
  21. <th width="15%"> Student Count </th>
  22. <th width="15%"> Edit </th>
  23. <th width="15%"> Delete </th>
  24. </tr>
  25. </thead>
  26. <tbody>
  27. {% for course in courses %}
  28. <tr>
  29. <td> {{ course.name }} </td>
  30. <td> {{ course.description }} </td>
  31. <td>
  32. {% if course.students %}
  33. {{ course.students.count() }}
  34. {% else %}
  35. 0
  36. {% endif %}
  37. </td>
  38. <td>
  39. <a id="edit" href="{{ url_for('admin.edit_course', id=course.id) }}">
  40. <i class="fa fa-pencil"></i> Edit
  41. </a>
  42. </td>
  43. <td>
  44. <a id="delete" href="{{ url_for('admin.delete_course', id=course.id) }}">
  45. <i class="fa fa-trash"></i> Delete
  46. </a>
  47. </td>
  48. </tr>
  49. {% endfor %}
  50. </tbody>
  51. </table>
  52. </div>
  53. <div>
  54. {% else %}
  55. <div >
  56. <h3> No departments have been added. </h3>
  57. <hr class="intro-divider">
  58. {% endif %}
  59. <a href="{{ url_for('admin.add_course') }}" class="btn btn-default btn-lg">
  60. <i class="fa fa-plus"></i>
  61. Add Course
  62. </a>
  63. </div>
  64. </div>
  65. </div>
  66. </div>
  67. </div>
  68. </div>
  69. {% endblock %}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement