2022-01-11 18:22:01 +00:00
|
|
|
{% extends 'layout.html' %}
|
|
|
|
{% load i18n %}
|
|
|
|
{% load utilities %}
|
|
|
|
|
|
|
|
{% block title %}
|
|
|
|
{% blocktrans trimmed with title=book|book_title %}
|
2022-01-11 18:33:58 +00:00
|
|
|
Update read dates for "<em>{{ title }}</em>"
|
2022-01-11 18:22:01 +00:00
|
|
|
{% endblocktrans %}
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
|
2022-01-11 18:27:10 +00:00
|
|
|
{% include "readthrough/readthrough_modal.html" with book=book active=True static=True %}
|
2022-01-11 18:22:01 +00:00
|
|
|
|
|
|
|
{% endblock %}
|