{% load i18n %} {% load humanize %} {% load tz %} {% load utilities %}
{% trans "Progress Updates:" %}
    {% if readthrough.finish_date or readthrough.progress %}
  • {% if readthrough.finish_date %} {{ readthrough.finish_date | localtime | naturalday }}: {% trans "finished" %} {% else %} {% if readthrough.progress_mode == 'PG' %} {% include 'snippets/page_text.html' with page=readthrough.progress total_pages=book.pages %} {% else %} {{ readthrough.progress }}% {% endif %} {% endif %} {% if readthrough.progress %} {% trans "Show all updates" as button_text %} {% include 'snippets/toggle/toggle_button.html' with text=button_text controls_text="updates" controls_uid=readthrough.id class="is-small" %} {% endif %}
  • {% endif %} {% if readthrough.start_date %}
  • {{ readthrough.start_date | localtime | naturalday }}: {% trans "started" %}
  • {% endif %}
{% trans "Edit read dates" as button_text %}
{% trans "Delete these read dates" as button_text %}
{% join "edit_readthrough" readthrough.id as edit_modal_id %} {% include "readthrough/readthrough_modal.html" with readthrough=readthrough id=edit_modal_id %} {% join "delete_readthrough" readthrough.id as delete_modal_id %} {% include 'readthrough/delete_readthrough_modal.html' with id=delete_modal_id %}