{% load i18n %} {% load humanize %} {% load tz %}
{% 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 %}
  • {{ readthrough.start_date | localtime | naturalday }}: {% trans "started" %}
{% trans "Edit read dates" as button_text %} {% include 'snippets/toggle/toggle_button.html' with class="is-small" text=button_text icon="pencil" controls_text="edit-readthrough" controls_uid=readthrough.id focus="edit-readthrough" %}
{% trans "Delete these read dates" as button_text %} {% include 'snippets/toggle/toggle_button.html' with class="is-small" text=button_text icon="x" controls_text="delete-readthrough" controls_uid=readthrough.id focus="modal-title-delete-readthrough" %}
{% include 'snippets/delete_readthrough_modal.html' with controls_text="delete-readthrough" controls_uid=readthrough.id no_body=True %}