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

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


{% endif %} {% if object.calories or object.protein %}
{% if object.calories %}
{{ object.calories }}
kcal
{% endif %} {% if object.protein %}
{{ object.protein }}g
Protein
{% endif %} {% if object.fat %}
{{ object.fat }}g
Fat
{% endif %} {% if object.carbohydrates %}
{{ object.carbohydrates }}g
Carbs
{% endif %} {% if object.fiber %}
{{ object.fiber }}g
Fiber
{% endif %} {% if object.sugar %}
{{ object.sugar }}g
Sugar
{% endif %}
{% endif %} {% if object.ingredients %}
Ingredients

{{ object.ingredients }}

{% endif %} {% if object.off_code %}

OFF: {{ object.off_code }}

{% endif %}

{{scrobbles.count}} scrobbles

Drink again

Last scrobbles

{% for scrobble in scrobbles.all|dictsortreversed:"timestamp" %} {% endfor %}
Date Format Size
{{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 %}
{% endblock %}