{% if Track %}
{% endif %}
{% if Video %}
{% endif %}
{% if SportEvent %}
Latest Sports
Date |
Title |
Round |
League |
Time watched |
{% for scrobble in SportEvent %}
{% if scrobble.in_progress %}{{scrobble.media_obj.strings.verb}} now | Finish{% else %}{{scrobble.timestamp|naturaltime}}{% endif %} |
{{scrobble.sport_event.title}} |
{{scrobble.sport_event.round.name}} |
{{scrobble.sport_event.round.season.league}} |
{{scrobble.elapsed_time|natural_duration}} |
{% endfor %}
{% endif %}
{% if PodcastEpisode %}
Date |
Title |
Podcast |
{% for scrobble in PodcastEpisode %}
{% if scrobble.in_progress %}{{scrobble.media_obj.strings.verb}} now | Finish{% else %}{{scrobble.timestamp|naturaltime}}{% endif %} |
{{scrobble.timestamp|naturaltime}} |
{{scrobble.podcast_episode.title}} |
{{scrobble.podcast_episode.podcast}} |
{% endfor %}
{% endif %}
{% if VideoGame %}
Video games
Date |
Cover |
Title |
Time played |
Percent complete |
{% for scrobble in VideoGame %}
{% if scrobble.in_progress %}{{scrobble.media_obj.strings.verb}} now | Finish{% else %}{{scrobble.timestamp|naturaltime}}{% endif %} |
{% if scrobble.media_obj.hltb_cover %}
 |
{% endif %}
{{scrobble.media_obj.title}} |
{{scrobble.elapsed_time|natural_duration}} |
{{scrobble.percent_played}} |
{% endfor %}
{% endif %}
{% if BoardGame %}
Board games
Date |
Cover |
Title |
Time played |
{% for scrobble in BoardGame %}
{% if scrobble.in_progress %}{{scrobble.media_obj.strings.verb}} now | Finish{% else %}{{scrobble.timestamp|naturaltime}}{% endif %} |
 |
{{scrobble.media_obj.title}} |
{{scrobble.elapsed_time|natural_duration}} |
{% endfor %}
{% endif %}
{% if WebPage %}
Web pages
Date |
Title |
Time browsing |
{% for scrobble in WebPage %}
{% if scrobble.in_progress %}{{scrobble.media_obj.strings.verb}} now | Finish{% else %}{{scrobble.timestamp|naturaltime}}{% endif %} |
{{scrobble.media_obj.title}} |
{{scrobble.elapsed_time|natural_duration}} |
{% endfor %}
{% endif %}
{% if Beer %}
Beers
Date |
Cover |
Title |
Time drinking |
{% for scrobble in Beer %}
{% if scrobble.in_progress %}{{scrobble.media_obj.strings.verb}} now | Finish{% else %}{{scrobble.timestamp|naturaltime}}{% endif %} |
 |
{{scrobble.media_obj.title}} |
{{scrobble.elapsed_time|natural_duration}} |
{% endfor %}
{% endif %}
{% if Book %}
Books
Date |
Cover |
Title |
Time reading |
{% for scrobble in Book %}
{% if scrobble.in_progress %}{{scrobble.media_obj.strings.verb}} now | Finish{% else %}{{scrobble.timestamp|naturaltime}}{% endif %} |
 |
{{scrobble.media_obj.title}} |
{{scrobble.elapsed_time|natural_duration}} |
{% endfor %}
{% endif %}
{% if Task %}
Date |
Title |
Time doing |
{% for scrobble in Task %}
{% if scrobble.in_progress %}{{scrobble.media_obj.strings.verb}} now | Finish{% else %}{{scrobble.timestamp|naturaltime}}{% endif %} |
{{scrobble.media_obj.title}} |
{{scrobble.elapsed_time|natural_duration}} |
{% endfor %}
{% endif %}