|
@@ -0,0 +1,33 @@
|
|
|
+{% extends "base_list.html" %}
|
|
|
+{% load static %}
|
|
|
+
|
|
|
+{% block title %}{{object.title}}{% endblock %}
|
|
|
+
|
|
|
+{% block lists %}
|
|
|
+<div class="row webpage">
|
|
|
+ <div class="webpage-metadata">
|
|
|
+ <p>{{object.description}}</p>
|
|
|
+ </div>
|
|
|
+</div>
|
|
|
+<div class="row">
|
|
|
+ <div class="col-md">
|
|
|
+ <h3>Last scrobbles</h3>
|
|
|
+ <div class="table-responsive">
|
|
|
+ <table class="table table-striped table-sm">
|
|
|
+ <thead>
|
|
|
+ <tr>
|
|
|
+ <th scope="col">Date</th>
|
|
|
+ </tr>
|
|
|
+ </thead>
|
|
|
+ <tbody>
|
|
|
+ {% for scrobble in scrobbles.all %}
|
|
|
+ <tr>
|
|
|
+ <td><a href={{scrobble.get_absolute_url}}>{{scrobble.local_timestamp}}</a></td>
|
|
|
+ </tr>
|
|
|
+ {% endfor %}
|
|
|
+ </tbody>
|
|
|
+ </table>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+</div>
|
|
|
+{% endblock %}
|