leaderboard.html 1.1 KB

123456789101112131415161718192021222324252627282930313233
  1. {% extends "base.html" %}
  2. {% block report %}
  3. <h2 style="text-align: center">Staff Leader Board</h2>
  4. <hr>
  5. <a href="{% url 'leader-board' 12345 %}"><span class="badge badge-info">All Location</span></a>
  6. {% for loc in er_locations %}
  7. <a href="{% url 'leader-board' loc.location_id %}"><span class="badge badge-info">{{ loc }}</span></a>
  8. {% endfor %}
  9. <hr>
  10. <table class="table mt-2">
  11. <thead style="text-align: center">
  12. <tr class="table-primary">
  13. <th scope="col">Name</th>
  14. <th scope="col">Department</th>
  15. <th scope="col">Location</th>
  16. <th scope="col">Total Mentioned</th>
  17. <th scope="col">Total Unit</th>
  18. </tr>
  19. </thead>
  20. <tbody style="text-align: center">
  21. {% for staff in staffs %}
  22. <tr>
  23. <th scope="row">{{ staff.name }}</th>
  24. <td>{{ staff.department }}</td>
  25. <td>{{ staff.location }}</td>
  26. <td>{{ staff.name_mentioned }}</td>
  27. <td>{{ staff.total_units }}</td>
  28. </tr>
  29. {% endfor %}
  30. </tbody>
  31. </table>
  32. {% endblock %}