moviewyrm/bookwyrm/templates/reading_progress/finish.html
2021-08-16 11:30:11 -07:00

15 lines
307 B
HTML

{% extends 'layout.html' %}
{% load i18n %}
{% block title %}
{% blocktrans trimmed with book_title=book.title %}
Finish "{{ book_title }}"
{% endblocktrans %}
{% endblock %}
{% block content %}
{% include "snippets/reading_modals/finish_reading_modal.html" with book=book active=True %}
{% endblock %}