{% load media_loaders %}

Statistics for last.fm

  • Most played artists for the last 7 days

      {% for artist in favourite_artists %}
    1. {{artist.name }}
    2. {% endfor %}
  • Upcoming Gigs

      {% for artist in favourite_artists %} {% if artist.gigs %}
    • {{artist.name}}

        {% for gig in artist.gigs %}
      1. {{gig.date|date:"D, M Y H:m"}} at {{gig.venue_name}}
      2. {% endfor %}
    • {% endif %} {% endfor %}