2021-06-08 14:23:53 -04:00
|
|
|
{% extends 'layout.html' %}
|
|
|
|
{% load i18n %}
|
|
|
|
|
|
|
|
{% block title %}
|
|
|
|
{% blocktrans trimmed with book_title=book.title %}
|
|
|
|
Start "{{ book_title }}"
|
|
|
|
{% endblocktrans %}
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
|
2021-09-05 18:24:09 -04:00
|
|
|
{% include "snippets/reading_modals/start_reading_modal.html" with book=book active=True static=True %}
|
2021-06-08 14:23:53 -04:00
|
|
|
|
|
|
|
{% endblock %}
|