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

Search Scrobbles

{% if user.is_authenticated %} {% endif %}
All {% for value, label in media_types %} {{ label }} {% endfor %}
{% if query or media_type %}
{% if scrobbles %}

{{ scrobbles|length }} result{{ scrobbles|length|pluralize }}

{% for scrobble in scrobbles %}
{{ scrobble.get_media_type_display }} {{ scrobble.timestamp|date:"M d, Y" }} {% if scrobble.source %} via {{ scrobble.source }}{% endif %}
{% if scrobble.tags.all %}
{% for tag in scrobble.tags.all %} {{ tag.name }} {% endfor %}
{% endif %}
{% endfor %} {% else %}
No scrobbles found matching your search.
{% endif %}
{% else %}

Enter a search term or select a media type to filter.

{% endif %}
{% endblock %}