series_list.html 1.1 KB

1234567891011121314151617181920212223242526272829303132
  1. {% extends "base_list.html" %}
  2. {% block lists %}
  3. <div class="row">
  4. <div class="col-md">
  5. <div class="table-responsive">
  6. <table class="table table-striped table-sm">
  7. <thead>
  8. <tr>
  9. <th scope="col">Series</th>
  10. <th scope="col">Episode</th>
  11. <th scope="col">Scrobbles</th>
  12. <th scope="col">All time</th>
  13. </tr>
  14. </thead>
  15. <tbody>
  16. {% for obj in object_list %}
  17. {% for video in obj.video_set.all %}
  18. <tr>
  19. <td><a href="{{video.get_absolute_url}}">{{video}}</a></td>
  20. <td><a href="{{obj.get_absolute_url}}">{{obj}}</a></td>
  21. <td>{{video.scrobble_set.count}}</td>
  22. <td></td>
  23. </tr>
  24. {% endfor %}
  25. {% endfor %}
  26. </tbody>
  27. </table>
  28. </div>
  29. </div>
  30. </div>
  31. {% endblock %}