As you saw in Chapter 10, Backend Views,
there are different kinds of views, like form, list, kanban, and so on. In this recipe, we will create a brand new view. This view will display the list of authors, along with their books.
Creating a new view
Getting ready
For this recipe, we will be using the my_library module from the previous recipe. Note that views are very complex structures, and each existing view has a different purpose and implementation. The purpose of this recipe is to make you aware of the MVC pattern view and how to create simple views. In this recipe, we will create a view called m2m_group, the purpose of which is to display records in groups. To divide records into different groups, the view will use...