Some users prefer to read a book page by page. Create the handler to serve a page by the request.
You can get the n_page variable from the **kwargs argument with the number of the page to show: 1, 2, 3 … Store the page content to the context by the key content.
Use the predefined book dictionary with pages you will show to the user and render the template defined in file book/templates/book/page.html.
By default, Django looks for templates in all of your <application_name>/templates directories, so do not include book/templates in the template path.