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

{% endif %}
{% if object.summary %}

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


{% endif %}

{% if object.readcomics_url %}

Read again

{% endif %} {% if object.next_readcomics_url %}

Read next issue

{% endif %}

{{scrobbles.count}} scrobbles {% if long_play_total_seconds %} | Total time: {{ long_play_total_seconds|natural_duration }}{% endif %} {% if long_play_finished_date %} | Finished: {{ long_play_finished_date|date:"M d, Y" }}{% endif %}

Resume reading

{% if charts %}
{% include "scrobbles/_chart_links.html" %}
{% endif %}

Last scrobbles

{% for scrobble in scrobbles.all|dictsortreversed:"timestamp" %} {% endfor %}
Date Completed Pages read Authors
{{scrobble.local_timestamp}} {% if scrobble.long_play_complete == True %}Yes (not complete?){% else %}No{% endif %} {% if scrobble.in_progress %}Now reading{% else %}{{scrobble.session_pages_read}}{% endif %} {% for author in scrobble.book.authors.all %}{{author}}{% if not forloop.last %}, {% endif %}{% endfor %}
{% endblock %}