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

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

{% if user.is_authenticated %}
{% include "scrobbles/_media_browser.html" %} {% if not user.profile.trends_disabled %} {% endif %}
{% if user.profile.lastfm_username and not user.profile.lastfm_auto_import %}
{% 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}}

{% elif home_sections %}
{% include "scrobbles/_summary_strip.html" %}

Timeline

{% cache 300 home_timeline user.id date_str %} {% include "scrobbles/_timeline.html" %} {% endcache %}

Details

{% for section in home_sections %}

{% cache 300 home_type_section user.id date_str section.media_type %} {% include "scrobbles/_type_section.html" %} {% endcache %}
{% empty %}

Nothing scrobbled today.

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