Integrating Visualizations with Django
In the preceding sections, you have 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 in this chapter focuses on that aspect, where you will learn how the components we have seen so far can be integrated into Django web applications.
Exercise 13.06: Visualizing a User's Reading History on the User Profile Page
In this exercise, you will aim to modify the user's profile page such 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 get started with integrating the ability to visualize the reading history of...