{% extends "base.html" %} {% load static %} {% load humanize %} {% load naturalduration %} {% block head_extra %} {% endblock %} {% block content %}

{% if date %}{{date|naturaltime}}{% else %}{{title}}{% endif %}

{% if user.is_authenticated %}
{% if user.profile.lastfm_username and not user.profile.lastfm_auto_import %}
{% endif %} {% if prev_link %} Previous {% endif %} {% if today_link %} Today {% endif %} {% if next_link %} Next {% endif %}
{% if user.profile.lastfm_username and not user.profile.lastfm_auto_import %}
{% endif %}
{% endif %}
{% if not user.is_authenticated %}

Today {{counts.today}} | This Week {{counts.week}} | This Month {{counts.month}} | This Year {{counts.year}} | All Time {{counts.alltime}}

{% else %}
{% include "scrobbles/_last_scrobbles.html" %}
{% endif %}
{% endblock %} {% block extra_js %} {% endblock %}