Integrating visualizations with Django
In the preceding sections, you learned how data can be read and written in different formats that cater to the different needs of users. But how can we use what we’ve learned to integrate with Django?
For example, in Bookr, we might want to allow the user to export a list of books that they have read or visualize their book-reading activity over a year. How can that be done? The next exercise focuses on this aspect. You will learn how the components that we have seen so far can be integrated into Django web applications.
Exercise 13.06 – visualizing a user’s reading history on the user’s profile page
In this exercise, we will modify the user’s profile page so that the user can visualize their book-reading history when they visit their profile page on Bookr.
Let’s look at how this can be done:
- To start integrating the ability to visualize the reading history of the user, you need to...