{% extends "base_list.html" %} {% load static %} {% block title %}{{object.title}}{% endblock %} {% block lists %}
{% for chart in charts %}{{chart}}{% if forloop.last %}{% else %} | {% endif %}{% endfor %}
| Date | Calories | Notes |
|---|---|---|
| {{scrobble.local_timestamp}} | {% if scrobble.logdata.calories %}{{scrobble.logdata.calories}}{% else %}{{scrobble.media_obj.calories}}{% endif %} | {% for note in scrobble.logdata.notes %}{{note}}{% if not forloop.last %}; {% endif%}{% endfor %} |