bookwyrm/bookwyrm/templates/readthrough/readthrough.html

16 lines
344 B
HTML
Raw Normal View History

{% 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>"
{% endblocktrans %}
{% endblock %}
{% block content %}
2022-01-11 18:27:10 +00:00
{% include "readthrough/readthrough_modal.html" with book=book active=True static=True %}
{% endblock %}