{% extends "base_list.html" %} {% load mathfilters %} {% load static %} {% load naturalduration %} {% block title %}{{object.title}}{% endblock %} {% block head_extra %} {% endblock %} {% block lists %}
{% if object.description%}

{{object.description|safe|linebreaks|truncatewords:160}}


{% endif %}

{{scrobbles.count}} scrobbles

Drink again

Last scrobbles

{% for scrobble in scrobbles.all|dictsortreversed:"timestamp" %} {% endfor %}
Date Format Size Roast Method
{{scrobble.local_timestamp}} {{ scrobble.logdata.format_display }} {% if scrobble.logdata.size_ml %} {% if request.user.profile.volume_unit == "imperial" %} {{ scrobble.logdata.size_oz }} oz {% else %} {{ scrobble.logdata.size_ml }} mL {% endif %} {% endif %} {{ scrobble.logdata.roast_level_display }} {{ scrobble.logdata.brewing_method_display }}
{% endblock %}