|
@@ -0,0 +1,82 @@
|
|
|
+{% extends "base_list.html" %}
|
|
|
+{% load urlreplace %}
|
|
|
+
|
|
|
+{% block title %}Albums{% endblock %}
|
|
|
+
|
|
|
+{% block lists %}
|
|
|
+
|
|
|
+<div class="row">
|
|
|
+ <p class="view">
|
|
|
+ <span class="view-links">
|
|
|
+ {% if view == 'grid' %}
|
|
|
+ View as <a href="?{% urlreplace view='list' %}">List</a>
|
|
|
+ {% else %}
|
|
|
+ View as <a href="?{% urlreplace view='grid' %}">Grid</a>
|
|
|
+ {% endif %}
|
|
|
+ </span>
|
|
|
+ </p>
|
|
|
+ <p class="pagination">
|
|
|
+ <span class="page-links">
|
|
|
+ {% if page_obj.has_previous %}
|
|
|
+ <a href="?{% urlreplace page=page_obj.previous_page_number %}">prev</a>
|
|
|
+ {% endif %}
|
|
|
+ <span class="page-current">
|
|
|
+ Page {{ page_obj.number }} of {{ page_obj.paginator.num_pages }}
|
|
|
+ </span>
|
|
|
+ {% if page_obj.has_next %}
|
|
|
+ <a href="?{% urlreplace page=page_obj.next_page_number %}">next</a>
|
|
|
+ {% endif %}
|
|
|
+ </span>
|
|
|
+ </p>
|
|
|
+ <hr />
|
|
|
+
|
|
|
+ {% if view == 'grid' %}
|
|
|
+ <div>
|
|
|
+ {% for game in object_list %}
|
|
|
+ {% if game.cover %}
|
|
|
+ <dl style="width: 130px; float: left; margin-right:10px;">
|
|
|
+ <dd><img src="{{game.cover.url}}" width=120 height=120 /></dd>
|
|
|
+ </dl>
|
|
|
+ {% endif %}
|
|
|
+ {% endfor %}
|
|
|
+ </div>
|
|
|
+ {% else %}
|
|
|
+ <div class="col-md">
|
|
|
+ <div class="table-responsive">
|
|
|
+ <table class="table table-striped table-sm">
|
|
|
+ <thead>
|
|
|
+ <tr>
|
|
|
+ <th scope="col">Scrobbles</th>
|
|
|
+ <th scope="col">Name</th>
|
|
|
+ <th scope="col">Publisher</th>
|
|
|
+ </tr>
|
|
|
+ </thead>
|
|
|
+ <tbody>
|
|
|
+ {% for game in object_list %}
|
|
|
+ <tr>
|
|
|
+ <td>{{game.scrobbles.count}}</td>
|
|
|
+ <td><a href="{{game.get_absolute_url}}">{{game}}</a></td>
|
|
|
+ <td><a href="{{game.publisher.get_absolute_url}}">{{game.publisher}}</a></td>
|
|
|
+ </tr>
|
|
|
+ {% endfor %}
|
|
|
+ </tbody>
|
|
|
+ </table>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ {% endif %}
|
|
|
+
|
|
|
+ <div class="pagination" style="margin-bottom:50px;">
|
|
|
+ <span class="page-links">
|
|
|
+ {% if page_obj.has_previous %}
|
|
|
+ <a href="?{% urlreplace page=page_obj.previous_page_number %}">prev</a>
|
|
|
+ {% endif %}
|
|
|
+ <span class="page-current">
|
|
|
+ Page {{ page_obj.number }} of {{ page_obj.paginator.num_pages }}
|
|
|
+ </span>
|
|
|
+ {% if page_obj.has_next %}
|
|
|
+ <a href="?{% urlreplace page=page_obj.next_page_number %}">next</a>
|
|
|
+ {% endif %}
|
|
|
+ </span>
|
|
|
+ </div>
|
|
|
+</div>
|
|
|
+{% endblock %}
|