{% extends "base_list.html" %} {% load static %} {% load form_tags %} {% block title %}{{object.title}}{% endblock %} {% block head_extra %} {% endblock %} {% block extra_js %} {% endblock %} {% block lists %}

Last scrobbles

{% for scrobble in scrobbles.all %} {% endfor %}
Date Notes
{{scrobble.local_timestamp}} {% if scrobble.logdata.notes %}{{ scrobble.logdata.notes_as_str }}{% endif %}

Source: {{object.domain}}

{% if object.date %}

Published: {{object.date}}

{% endif %}

Time to read: {{object.estimated_time_to_read_in_minutes}} minutes

{% if object.tags.all %}

Tags: {% for tag in object.tags.all %} {{ tag.name }}{% if not forloop.last %}, {% endif %} {% endfor %}

{% endif %}
{% if object.extract %}
{{object.extract|linebreaks}}
{% endif %}
{% if latest_scrobble_notes %}
Notes
{% for note in latest_scrobble_notes %}
{{ note|note_text }}
{% endfor %}
{% endif %}
{% endblock %}