developer_list.html 740 B

123456789101112131415161718192021222324252627
  1. {% extends "base.html" %}
  2. {% block page_title %}Developers{% endblock %}
  3. {% block title %}All developers{% endblock %}
  4. {% block content %}
  5. <table class="table table-bordered table">
  6. <thead>
  7. <tr>
  8. <th scope="col">#</th>
  9. <th scope="col">Name</th>
  10. <th scope="col">Games</th>
  11. <th scope="col">Rating</th>
  12. </tr>
  13. </thead>
  14. <tbody>
  15. {% for developer in object_list %}
  16. <tr>
  17. <th scope="row"><a href="{{developer.get_absolute_url}}">{{developer.id}}</a></th>
  18. <td>{{developer.name}}</td>
  19. <td>{{developer.game_set.count}}</td>
  20. <td>{{developer.rating_avg}}/100</td>
  21. </tr>
  22. {% endfor %}
  23. </tbody>
  24. </table>
  25. {% endblock %}