{% extends "base.html" %} {% load humanize %} {% block title %}{% endblock %} {% block content %} {% if now_playing_list %}

Now playing

{% for scrobble in now_playing_list %} {% if scrobble.video %}
{{scrobble.video.title}} - {{scrobble.video}}
Started {{scrobble.created|naturaltime}} from {{scrobble.source}}
{% endif %} {% if scrobble.track %}
{{scrobble.track.title}} by {{scrobble.track.artist}} from {{scrobble.track.album}}
Started {{scrobble.created|naturaltime}} from {{scrobble.source}}
{% endif %}
{% endfor %} {% endif %}

Last scrobbles

{% endblock %}