1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- {% extends "base_list.html" %}
- {% load mathfilters %}
- {% load static %}
- {% block title %}{{object.name}}{% endblock %}
- {% block lists %}
- <div class="row">
- {% if object.cover_image %}
- <p style="float:left; width:302px; padding:0;">
- <img src="{{object.cover_image.url}}" width=300 height=300 />
- </p>
- {% endif %}
- <div style="float:left; width:600px; margin-left:10px; ">
- {% if object.theaudiodb_description %}
- <p>{{object.theaudiodb_description|safe|linebreaks|truncatewords:160}}</p>
- {% endif %}
- {% if object.allmusic_review%}
- <p>{{object.allmusic_review|safe|linebreaks|truncatewords:160}}</p>
- {% endif %}
- <hr/>
- <p style="float:right;">
- <a href="{{album.mb_link}}"><img src="{% static "images/musicbrainz-logo.png" %}" width=35></a>
- <a href="{{album.rym_link}}"><img src="{% static "images/rateyourmusic-logo.jpg" %}" width=35></a>
- {% if album.bandcamp_link %}<a href="{{album.bandcamp_link}}"><img src="{% static "images/bandcamp-logo.png" %}" width=35></a>{% endif %}
- {% if album.tadb_link %}<a href="{{album.tadb_link}}"><img src="{% static "images/theaudiodb-logo.png" %}" width=35></a>{% endif %}
- {% if album.allmusic_link %}<a href="{{album.allmusic_link}}"><img src="{% static "images/allmusic-logo.png" %}" width=35></a>{% endif %}
- </p>
- </div>
- </div>
- <div class="row">
- <p>{{object.scrobbles.count}} scrobbles</p>
- {% if charts %}
- <p>{% for chart in charts %}<em><a href="{{chart.link}}">{{chart}}</a></em>{% if forloop.last %}{% else %} | {% endif %}{% endfor %}</p>
- {% endif %}
- <div class="col-md">
- <h3>Top tracks</h3>
- <div class="table-responsive">
- <table class="table table-striped table-sm">
- <thead>
- <tr>
- <th scope="col">Rank</th>
- <th scope="col">Track</th>
- <th scope="col">Artist</th>
- <th scope="col">Count</th>
- <th scope="col"></th>
- </tr>
- </thead>
- <tbody>
- {% for track in object.tracks %}
- <tr>
- <td>{{rank}}#1</td>
- <td><a href="{{track.get_absolute_url}}">{{track.title}}</a></td>
- <td><a href="{{track.artist.get_absolute_url}}">{{track.artist}}</a></td>
- <td>{{track.scrobble_count}}</td>
- <td>
- <div class="progress-bar" style="margin-right:5px;">
- <span class="progress-bar-fill" style="width: {{track.scrobble_count|mul:10}}%;"></span>
- </div>
- </td>
- </tr>
- {% endfor %}
- </tbody>
- </table>
- </div>
- </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>
- <th scope="col">Track</th>
- <th scope="col">Artist</th>
- </tr>
- </thead>
- <tbody>
- {% for scrobble in object.scrobbles %}
- <tr>
- <td>{{scrobble.timestamp}}</td>
- <td><a href="{{scrobble.track.get_absolute_url}}">{{scrobble.track.title}}</a></td>
- <td><a href="{{scrobble.track.artist.get_absolute_url}}">{{scrobble.track.artist.name}}</a></td>
- </tr>
- {% endfor %}
- </tbody>
- </table>
- </div>
- </div>
- </div>
- {% endblock %}
|