After writing the views, we will surely want to render the content on a template and get information from the underlying database.
Rendering to templates
Getting ready
To render to templates, we will use Jinja2 as the templating language. Refer to Chapter 2, Templating with Jinja2, to understand templating in depth.
How to do it...
We will again work in reference to our existing catalog application from the previous recipe. Let's modify our views to render templates and then display data from the database in these templates.
The following is the modified views.py...