Statistics for last.fm
-
Most played artists for the last 7 days
-
{% for artist in favourite_artists %}
- {{artist.name }} {% endfor %}
-
Upcoming Gigs
-
{% for artist in favourite_artists %}
{% if artist.gigs %}
-
{{artist.name}}
-
{% for gig in artist.gigs %}
- {{gig.date|date:"D, M Y H:m"}} at {{gig.venue_name}} {% endfor %}
{% endif %}
{% endfor %}
-