Files
vrobbler/vrobbler/templates/charts/bandcamp_tracks.html
Colin Powell d7a23c3832
All checks were successful
build & deploy / test (push) Successful in 1m58s
build & deploy / build-and-deploy (push) Successful in 29s
[charts] Clean up some chart views
2026-05-27 22:08:58 -04:00

35 lines
1.0 KiB
HTML

{% extends "base_list.html" %}
{% block title %}Bandcamp Tracks{% endblock %}
{% block head_extra %}
<style>
.container { margin-bottom: 100px; }
</style>
{% endblock %}
{% block lists %}
<div class="row">
<div class="col-12">
<h2>🎵 Top Bandcamp Tracks</h2>
<p class="text-muted">Shows tracks scrobbled from Bandcamp via Mopidy</p>
</div>
</div>
<div class="row">
<div class="col-md-6 col-lg-4 chart-section">
<ul class="list-group">
{% for item in bandcamp_tracks %}
<li class="list-group-item d-flex justify-content-between align-items-center">
<span class="me-2"><strong>#{{ forloop.counter }}</strong></span>
<a href="{{ item.track.get_absolute_url }}">{{ item.track.title }}</a>
<span class="badge bg-success rounded-pill">{{ item.count }}</span>
</li>
{% empty %}
<li class="list-group-item">No Bandcamp tracks found.</li>
{% endfor %}
</ul>
</div>
</div>
{% endblock %}